Will programmatically allocating an interface object affect loading time?

110 Views Asked by At

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?

1

There are 1 best solutions below

2
On

Constructing your UIs programmatically can reduce load times. There's less to read from disk, less to parse, and you can write an implementation which loads faster.

NIBs may also be cached to close that gap.

For many applications, it wont matter -- just use what fits the design best (that may be NIBs if that is what you are most familiar with). For complicated or performance critical apps, programmatic creation is often the way to go. For really large apps, there are a number of other considerations.

You can just use separate NIBs or programmatic implementations to do partial loads. However, load times should not be noticeably long in either case. If it is, then see what the profiler shows you.