my class extends BaseModel but i'd like it to implement NSCopying so I'm also now importing AutoCoding. because BaseModel has an uncodableProperties class method, AutoCoding is spitting out a whole ton of
AutoCoding Warning: uncodableProperties method is no longer supported. Use ivars, or synthesize your properties using non-KVC-compliant names to avoid coding them instead.
Is there a more appropriate way to implement NSCopying or should I be doing something differently? I don't have any "uncodable" properties in my classes.
thanks for these awesome classes :-)
my class extends
BaseModelbut i'd like it to implementNSCopyingso I'm also now importingAutoCoding. becauseBaseModelhas anuncodablePropertiesclass method,AutoCodingis spitting out a whole ton ofAutoCoding Warning: uncodableProperties method is no longer supported. Use ivars, or synthesize your properties using non-KVC-compliant names to avoid coding them instead.Is there a more appropriate way to implement
NSCopyingor should I be doing something differently? I don't have any "uncodable" properties in my classes.thanks for these awesome classes :-)