0

Is the instance of UIApplication given in didFinishLaunchingWithOptions is same as [UIApplication sharedApplication]

Unheilig
  • 16,196
  • 193
  • 68
  • 98

1 Answers1

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