I searched a lot but couldn\'t find the way to measure web page loading time with iOS.
In the app, I want to show certain page loading time.. Is it possible with iOS sdk or
Assuming you are working with a UIWebView, you can set its delegate and make note of the time in the delegate's -webViewDidFinishLoad: method. The difference between this time and the earlier call to webview's -loadRequest: method should give you the loading time.