Anyone have any ideas? When I try to synthesize a property I have declared in the .h file its not letting me synthesize it. Any ideas? Thanks!
This can happen when you attempt to synthesize a property outside of the scope of your class' implementation.
Incorrect:
@synthesize yourProperty;
@implementation YourClass
@end
Correct:
@implementation YourClass
@synthesize yourProperty;
@end
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With