I'm making an app that allows you to quickly change your brightness, but that was rejected for not having enough features, so I'm merging it with my battery app. If I only load the brightness stuff and have a button that says "load rest of app", which when pressed, loads the rest of the interface as below:
(IBOutlet previously made)
batterymeter = [[UIImageView alloc] initWithFrame:CGRectMake(150,300,250,50)];
batterymeter.image = [UIImage imageNamed:@"batteryfill.png"];
will that slow down the loading time? If not, how could I go about loading half an interface?