I have certain lines of code within a macro
//#define EnablePushNotification
#ifdef EnablePushNotification
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound|UIRemoteNotificationTypeAlert)];
#endif
My question is “whether the .ipa file generated will contain the code inside “EnablePushNotification”, if the “EnablePushNotification” is commented out?
Comments are processed before the preprocessor kicks in, so no it will not.