/*
Override this in your model class to extend or replace the excluded properties
eg.
- (NSArray *)excludedPropertyNames
{
NSArray *exclusions = [NSArray arrayWithObjects:@"extraPropertyToExclude", nil];
return [[super excludedPropertyNames] arrayByAddingObjectsFromArray:exclusions];
}
*/
- (NSArray *)excludedPropertyNames
{
// exclude id , created_at , updated_at
return [NSArray arrayWithObjects:[self getRemoteClassIdName],@"createdAt",
@"updatedAt",
@"URLValue",
@"panoramaID",
@"accessibilityLanguage",
@"accessibilityFrame",
@"accessibilityTraits",
@"accessibilityHint",
@"accessibilityValue",
@"accessibilityLabel",
@"isAccessibilityElement",
nil];
}
--
You received this message because you are subscribed to the Google Groups "ObjectiveResource" group.
To post to this group, send email to objectiv...@googlegroups.com.
To unsubscribe from this group, send email to objectiveresou...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/objectiveresource?hl=en.