1 2 3 4 5 6 7 8 9 10
#import <Foundation/Foundation.h> #import "my-base.h" @implementation MyBase #if __OBJC2__ @synthesize propertyMovesThings; #else @synthesize propertyMovesThings = maybe_used; #endif @end