Solved
Is there macro can be used as compilation switch to differentiate between build for simulator vs for HW target?
Sample usage:
I want to have different settings when working in hardware vs working on simulator
Sample usage:
I want to have different settings when working in hardware vs working on simulator
Hi,
If you wish to add code only for when running with the simulator you can wrap the particular code (UI components and logic) in something like this:
#ifdef SIMULATOR
//...
#endifDon't know if there is the equivalent for just running on hardware.
/Romain
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.