THERE IS A WAY!
I found this question a while ago and came to the conclusion that in iOS there was no real launch of instant start.
BUT! I recently found an awesome library that will let you bring this amazing feature to iOS. I share it here because it has become important to me, and I would love to find it when I came here for the first time. It is called Injection for Xcode and takes the form of a plugin. The installation is a bit long due to the new limitations of Xcode. You will need to fix Xcode in order to be able to run plugins in it. You can find all of this information in Reading Me or Problems. This may take up to 30 minutes, but this plugin is a real-time splash screen !
Once it is installed, launch the application, as usual, using Xcode ( CMD + R ). Then change the code somewhere in the controller. Now press CTRL + = to use the Injection plugin. You will not see any reboot in your simulator, but if you try, you will see that your code changes have been made (in a few seconds!).
For example, you have this line:
self.view.backgroundColor = [UIColor blackColor];
After your application works with CMD + R , change the line to:
self.view.backgroundColor = [UIColor whiteColor];
Press CTRL + = and enjoy!
Hope this helps someone! If you have any questions (for installation or others), please ask me in the comments.
source share