In new Xcode 6.3 I get this warning:
Auto property synthesis will not synthesize property 'homeInt'; it will be implemented by its superclass, use @dynamic to acknowledge intention
How I can remove it?
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.
I simply removed this property declaration, because it has already been declared in parent class
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