ios - UIActivityIndicatorView won't show in UIWebView -
ios - UIActivityIndicatorView won't show in UIWebView -
i have uiwebview show activity indicator in while page loading. have added uiwebviewdelegate , added indicator in .xib file still doesnt show.
-(void) webviewdidstartload:(uiwebview *)webview { [webview addsubview:loadingview]; [webview bringsubviewtofront:loadingview]; [loadingview startanimating]; } -(void) webviewdidfinishload:(uiwebview *)webview { [loadingview stopanimating]; }
can help me? thanks.
make sure iboutlet
loadingview
connected view object in interface builder.
ios webview loading uiactivityindicatorview
Comments
Post a Comment