If you are overriding the same property from the super class on purpose, then in your *.m
or *.mm
file, add @dynamic
like:
@implementation MyClass
@dynamic homeInt;
// ...
@end
If not, rename the property.
If you are overriding the same property from the super class on purpose, then in your *.m
or *.mm
file, add @dynamic
like:
@implementation MyClass
@dynamic homeInt;
// ...
@end
If not, rename the property.