我在宏中有某些代码行
//#define EnablePushNotification
#ifdef EnablePushNotification
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound|UIRemoteNotificationTypeAlert)];
#endif
我的问题是“如果“EnablePushNotification”被注释掉,生成的 .ipa 文件是否会包含“EnablePushNotification”中的代码?