Reputation: 798
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?
Upvotes: 1
Views: 77