I want my struct to have cocoa objects when GC is set to required:
struct {
int pod;
#ifdef GC_REQUIRED
NSString *cocoa;
#endif
};
I want my struct to have cocoa objects when GC is set to required:
struct {
int pod;
#ifdef GC_REQUIRED
NSString *cocoa;
#endif
};
Copyright © 2021 Jogjafile Inc.
When garbage collection is enabled __OBJC_GC__ is defined, so you can check like this: