如何使用Objective-C @property

时间:2011-11-09 08:29:26

标签: iphone objective-c xcode

我正在尝试制作基于导航的应用程序。

我想要做的是在我的.h文件中创建一些属性。例如:

NSString *Banana;
NSString *Apple; 

然后

@property (nonatomic, retain) NSString *Banana;
@property (nonatomic, retain) NSString *Apple;

.m file中,我想调用这些属性,可能在我的viewdidload中,然后在里面给它们一些字符串,所以当我运行我的应用程序时,它会显示字符串。

2 个答案:

答案 0 :(得分:2)

这样设置,

self.Banana=@"ur string"

[self setBanana:@"ur string"]

答案 1 :(得分:0)

@implementation

@synthesize Banana;
@synthesize Apple;

viewDidLoad方法中,执行

self.Banana = @"Yellow thing";
self.Apple =  @"Green or red thing";