How implement a UIActivityIndicatorView when the UIWebView is Loading? (iPhone ObjC)

后端 未结 3 2196
栀梦
栀梦 2020-12-17 22:08

I want to know how to implement an activityIndicator in a WebView based app, I wrote the following code but the indicator does not appear.

The webview load file loca

相关标签:
3条回答
  • 2020-12-17 22:22

    UIWebView.loading property can also be used.

    Apple's doc: @property(nonatomic, readonly, getter=isLoading) BOOL loading Description A Boolean value indicating whether the receiver is done loading content. (read-only) If YES, the receiver is still loading content; otherwise, NO.

    In iOS6 it looks like Apple has fixed some issues with this property as well. http://code-gotcha.blogspot.fi/2012/08/uiwebviewloading-in-ios-6-fixed.html

    0 讨论(0)
  • 2020-12-17 22:28

    Why are you setting your activity indicator to nil in your init?

    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {     
      if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {      
         //Initialization code      
         m_activity = nil;  
       }    
       return self; 
    }
    

    The call to super initialized your indicator from your XIB (assuming you connected it to your outlet in IB), but then you are setting the reference to nil after it's been initialized. Remove that line. Then go back into interface builder and set the "Hide when stopped" checkbox. Now you can simplify your code that displays the indicator:

    - (void)webViewDidFinishLoad:(UIWebView *)webView {
       [m_activity stopAnimating];  
    }
    
    - (void)webViewDidStartLoad:(UIWebView *)webView {     
       [m_activity startAnimating];     
    }
    

    The "Hide when stopped" causes the indicator to hide when you stop it from animating.

    0 讨论(0)
  • 2020-12-17 22:34

    Whats the issue here, the code you posted above should work, except that you dont initialize the indicator anywhere (maybe you do in viewDidLoad) but the code shown above should work given that the indicator was initialized correctly and u set the webview d elegate to the view controller there, I have it working on some of my apps where i use webviews and indicators to indicate when its loading...

    0 讨论(0)
提交回复
热议问题