Josh Brown
Josh Brown

Reputation: 53083

When a user updates an iOS app, does application:didFinishLaunchingWithOptions: get called?

I've looked at the docs but am still unsure. Will application:didFinishLaunchingWithOptions: get called again after the user updates their app from the App Store and then launches the app again? As I understand it, this method only gets called on first launch and then again if the user kills the app. But what about after an update from the App Store?

Upvotes: 8

Views: 1314

Answers (1)

Vanya
Vanya

Reputation: 5005

According to me it is definitely called again. What if your update brings a new implementation right in the mentioned method? So it have to be called.

Upvotes: 4

Related Questions