1

マクロ内に特定のコード行があります

//#define EnablePushNotification

#ifdef EnablePushNotification
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound|UIRemoteNotificationTypeAlert)];
#endif

私の質問は、「EnablePushNotification」がコメントアウトされている場合、生成された.ipaファイルに「EnablePushNotification」内のコードが含まれるかどうかです。

4

1 に答える 1

2

コメントはプリプロセッサが起動する前に処理されるため、処理されません。

于 2013-02-04T10:18:41.220 に答える