UIAlertView Dynamically in iPhone App
I want to display dynamic UIAlertView and Indicator within it when data is loading from web-service. Also I don't want any button on UIAlertView. And it will be stopped automatically when data will be loaded successfully. How can I implement it.? If you are using WebView then write startAnimating ActivityIndicator in ViewDidLoad and this delegate method will call by itself when your data will be loaded - (void)webViewDidFinishLoad:(UIWebView *)webView { //[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO]; [ActivityIndicator stopAnimating]; } Hope it helps.Thanks :) Just