I need to create downloading bar, when URL is loading on UIWebview to my application.
I need to following format when URL is loading time to my application.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I suggest using the native
UIProgressViewfor this.To do that, use
UIWebViewDelegateand implementwebViewDidStartLoad:andwebViewDidFinishLoad:.I don’t think it’s possible to easily show an indicator about how much of resources have been loaded so far due to the fact that
UIWebViewis rather limited on iOS, you’d have to create some kind of smooth, timed animation.If I was you, I’d go for
UIActivityIndicatorViewto display that “spinning circle” indicator while the page is loading.