假设我要定义一个私有的属性该怎么办?

iOS的接口定义属性根本就没有权限的定义
那我要定义一个私有的属性怎办?

守着一只汪
浏览 148回答 3
3回答

千巷猫影

可以将@property定义写在.m文件中的类扩展(class extension)中,例如,"MyClass.h"如下@interface MyClass : NSObject@end在"MyClass.m"里可以这么写:#import "MyClass.h"@interface MyClass ()@property (nonatomic, assign) BOOL foo;@end@implementation MyClass@synthesize foo = _foo; //XCode 4.4之后,这行可以省略@end

慕虎7371278

没有特别好的办法,把私有的属性定义在单独的头文件里,把这个头文件不要公开给别人,也就是头文件属性设置为project,不要设置为public。那么当你的程序库发布的时候这个头文件就不会被导出

GCT1015

#import <Foundation/Foundation.h>@interface Person : NSObject{&nbsp; &nbsp; @public&nbsp; &nbsp; NSString *name;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; @protected&nbsp; &nbsp; NSString *gender;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; @private&nbsp; &nbsp; NSString *emotion;}@end
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

iOS