Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8365739
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T12:43:55+00:00 2026-06-09T12:43:55+00:00

As the title suggests my activity indicator in the status wont stop animating. Ive

  • 0

As the title suggests my activity indicator in the status wont stop animating.

Ive done some research on here and not sure what im doing wrong…

In my Apps delegate I have

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{


UIApplication* app = [UIApplication sharedApplication];
app.networkActivityIndicatorVisible = NO;

In my view controller.m I want to call the activity indicator

 NSString *web = @"http://google.com";
    NSURL *url = [NSURL URLWithString:web];
    NSURLRequest *requestUrl = [NSURLRequest requestWithURL:url];
    [toweb loadRequest:requestUrl];

    UIApplication* app = [UIApplication sharedApplication];

     app.networkActivityIndicatorVisible = YES; <<<<<<<<<<<<<<<<<<<<<

Now heres the problem im trying to hide it again with:

- (void)DidFinishLoad:(UIWebView *)toweb{
 [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
 }    

}

Any advice appreciated

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T12:43:56+00:00Added an answer on June 9, 2026 at 12:43 pm

    looks like your UIWebViewDelegate method name is wrong, it should be

    -(void)webViewDidFinishLoad:(UIWebView *)webView {
          [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
    }
    

    not

    - (void)DidFinishLoad:(UIWebView *)toweb{
         [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
    }    
    

    Hence when the UIWebView tries to call its delegate method, there is no method declaration so your class is not being notified that the web view has finished loading.

    Also make sure you have set your class as the delegate

    toweb.delegate = self

    and in your .h file

    @interface viewcontroller : UIViewController <UIWebViewDelegate>

    Note that in the delegate callback method, the webView parameter is a reference to the webview that has finished loading (in this case its the one you’ve called toweb) This is a different pointer to the same UIWebView object, so it doesn’t need to have the same name as your local declaration/handle to the web view

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As the title suggests — can I be reasonably sure that mktemp will exist
my question is pretty much what the title suggests. my research has led me
As title suggests, how do i check if particular Double is negative or not.
As the title suggests, I'm trying to write some C# code to interop with
As title suggests, even when I set Hint property of checkbox, tooltip is not
As title suggests I want to know the difference between the change and click
As the title suggests, how do I get the number of views / clicks
As the title suggests, I would like to get the last word out of
As the title suggests, I was wondering how to concat two fields in a
So as the title suggests I wish to create a new dom element (the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.