1. 使用+ (__kindof NSManagedObject *)insertNewObjectForEntityForName:(NSString *)entityName inManagedObjectContext:(NSManagedObjectContext *)context;方法获得的模型, 会为模型类别里的属性生成setter和getter方法
而通过 Class *model = [[Class alloc] init]; 获得的模型分类中的属性是没有setter和getter方法的
综上: 类别可以为一个类添加属性, 但是没有setter和getter方法.