Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GC が必須に設定されている場合、構造体に cocoa オブジェクトが必要です。
struct { int pod; #ifdef GC_REQUIRED NSString *cocoa; #endif };
ガベージ コレクションを有効にすると __OBJC_GC__ が定義されるため、次のように確認できます。
struct { int pod; #ifdef __OBJC_GC__ NSString *cocoa; #endif };