I have searched but not found exactly what I was looking for. I have a UITabBar application that, in the first view, loads a large set of data from the web. This might take several seconds, especially when connected to an Edge network.

I have a startup screen showing a logo etc., but I would like to add an activity indicator to show the user that something is actually going on.

How can I achieve this? The posts I have found do only regard ActivityIndicators while switching between tabs.

Thanks

link|improve this question

Uhh, just load and display it in the viewDidLoad or viewDidAppear method of your main view controller? – onnoweb Aug 2 '11 at 18:07
I have tried what you suggest, onnoweb, but I am unable to make the UIActivityIndicator appear on top of my Default.png image. – Muncken Aug 2 '11 at 18:12
Possible duplicate of stackoverflow.com/questions/6783903/load-screen-iphone-app/… – j0k Aug 2 '11 at 18:16
j0k: thanks for the link, I have searched but not found it. – Muncken Aug 2 '11 at 18:18
feedback

1 Answer

up vote 0 down vote accepted

If the loading of data takes much time you can take another view controller as your rootViewController just having the Splashscreen (The screen having the image or view that you can display till the data is being downloaded) and activity indicator and when your download completes remove the temprootViewcontroller from the window and add your original controller to the window.

Edit

    //To show custom Splash screen do something like in
 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

SplashScreenVC *splashScreenVC = [[SplashScreenVC alloc] initWithNibName:@"SplashScreenVC" bundle:nil];
    self.window.rootViewController = splashScreenVC;
    [self.window makeKeyAndVisible];

//And when your data finishes downloading you can write following there to show your tabBar.

AppDelegate*delegate = (AppDelegate*)[UIApplication sharedApplication].delegate;
delegate.window.rootViewController = delegate.tabBarController;
[delegate.window makeKeyAndVisible];

//If you want to simulate downloading and want to sleep the device you can try this in SplashScreenVC

-(void)viewDidAppear:(BOOL)animated{
        [super viewDidAppear:animated];
        [self performSelector:@selector(gotosleep) withObject:nil afterDelay:1.0];
    }
    -(void)gotosleep{
        sleep(5);
        AppDelegate*delegate = (AppDelegate*)[UIApplication sharedApplication].delegate;
        delegate.window.rootViewController = delegate.tabBarController;
        [delegate.window makeKeyAndVisible];
    }
link|improve this answer
This sounds as the solution for me. But I just want to clearify something. My app is a tabbar app, does this mean that my rootViewController is the viewController of the first view in the tabbar? – Muncken Aug 2 '11 at 18:19
in applicationDidFinishLaunching you might find something like [window addSubview:tabbar.view]; [window makeKeyAndVisible]; You just need to cut this code and addSubview your tempview.view in the window and when finished downloading remove it from superview. and then paste the code and you are done. – Himanshu A Jadav Aug 2 '11 at 18:40
I have a bit of trouble getting this to work. In my AppDelegate.m I have the following line (which I assume are the line you talk about above): self.window.rootViewController = loadScreen; This does indeed change the view to the view of loadScreen. In loadScreen's viewDidLoad I start a uiactivity indicator and simulates a huge download by adding: sleep(5). But then my view is first visible when the 5 seconds have passed... – Muncken Aug 3 '11 at 16:26
here you when you can try calling sleep after some delay.i.e. -(void)viewDidAppear:(BOOL)animated{ [self performSelector:@selector(gotosleep) withObject:nil afterDelay:1.0]; } -(void)gotosleep{ sleep(5); } – Himanshu A Jadav Aug 4 '11 at 10:13
I am sorry, Himanshu, but I think I have complete lost it here. Would you mind creating a small illustration? – Muncken Aug 6 '11 at 10:45
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.