崩溃:Property follows Cocoa naming convention for returning 'owned' objects

定义属性时,报了这个错误,如下:

错误信息

Property follows Cocoa naming convention for returning 'owned' objects

报错位置

@interface ViewController ()

    @property(copy,nonatomic)NSMutableString *copyMutalbesString;

@end

原因

原因很简单,OC的属性命名,不得以alloc,new,copy,mutableCopy开头。所以改个名字就行了。

你可能感兴趣的:(IOS,Object-c,IOS,owned,objects)