You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 14, 2026. It is now read-only.
//deprecated
SEL deprecatedSelector = NSSelectorFromString(@"codableKeys");
if ([self respondsToSelector:deprecatedSelector] || [self instancesRespondToSelector:deprecatedSelector])
{
NSLog(@"AutoCoding Warning: codableKeys method is no longer supported. Use codableProperties instead.");
}
deprecatedSelector = NSSelectorFromString(@"uncodableKeys");
if ([self respondsToSelector:deprecatedSelector] || [self instancesRespondToSelector:deprecatedSelector])
{
NSLog(@"AutoCoding Warning: uncodableKeys method is no longer supported. Use ivars, or synthesize your properties using non-KVC-compliant names to avoid coding them instead.");
}
deprecatedSelector = NSSelectorFromString(@"uncodableProperties");
codableKeys uncodableKeys uncodableProperties Where do these methods come from? Why do like This?
Thank you
//deprecated
SEL deprecatedSelector = NSSelectorFromString(@"codableKeys");
if ([self respondsToSelector:deprecatedSelector] || [self instancesRespondToSelector:deprecatedSelector])
{
NSLog(@"AutoCoding Warning: codableKeys method is no longer supported. Use codableProperties instead.");
}
deprecatedSelector = NSSelectorFromString(@"uncodableKeys");
if ([self respondsToSelector:deprecatedSelector] || [self instancesRespondToSelector:deprecatedSelector])
{
NSLog(@"AutoCoding Warning: uncodableKeys method is no longer supported. Use ivars, or synthesize your properties using non-KVC-compliant names to avoid coding them instead.");
}
deprecatedSelector = NSSelectorFromString(@"uncodableProperties");
codableKeys uncodableKeys uncodableProperties Where do these methods come from? Why do like This?
Thank you