Is the instance of UIApplication given in didFinishLaunchingWithOptions is same as [UIApplication sharedApplication]
Asked
Active
Viewed 109 times
1 Answers
1
Yes, they are the same, for UIApplication
is a singleton; the message [UIApplication sharedApplication]
returns that singleton object and so does didFinishLaunchingWithOptions
.

Unheilig
- 16,196
- 193
- 68
- 98