Is there conditional statements to exclude code when compiling with GC disabled?

250 Views Asked by At

I want my struct to have cocoa objects when GC is set to required:

struct {
  int pod;
#ifdef GC_REQUIRED
  NSString *cocoa;
#endif 
};
1

There are 1 best solutions below

0
On BEST ANSWER

When garbage collection is enabled __OBJC_GC__ is defined, so you can check like this:

struct {
  int pod;
#ifdef __OBJC_GC__
  NSString *cocoa;
#endif 
};