iOS定义私有属性

来源:互联网 发布:淘宝如何上传历史宝贝 编辑:程序博客网 时间:2024/06/14 06:06

XYZPerson.h

@interface XYZPerson : NSObject...@property (readonly) NSString *uniqueIdentifier;@end

XYZPerson.m

@interface XYZPerson ()@property (readwrite) NSString *uniqueIdentifier;@end@implementation XYZPerson...@end