Any sample code that would show me how to, in my iPhone application code:
- How to detect if the application has just been DEPLOYED to be run to a simulator (and not a device) [if "Deployed" isn't available, then just detecting when the app is being run on the simulator as opposed to a device)
- Where about in my iPhone app code would I put the lines that setup my test data in the simulator - this is noting I wanted the test data to be effectively wiped clean/re-instated each time I recompile and push to the simulator (however I didn't really want this code to be run during my usage of the application in the simulator - e.g. should be able to swap apps in the simulator & then when I start my app again in the simulator it should not run the data setup code
Any other better suggestions re how to cover off managing this test data on the simulator would be good. Background here is that I'm talking about test data in the Calendar (e.g. using Event Kit), so I don't want to have the app putting calendar items into my iPhone when I deploy to my device (sorry - only have 1 personal iPhone here).
If you'd like to check on runtime (instead compile time with the # compiler macro) use this code:
see also this question: How can I programmatically determine if my app is running in the iphone simulator?
The code block that worked for me:
I noticed
__i386__
does not work for iPhone 6 simulators, so I added x86_64I obviously do use something like this ...
And to your second question ... Something like this should help you. In your app delegate: