我正在尝试制作基于导航的应用程序。
我想要做的是在我的.h文件中创建一些属性。例如:
NSString *Banana;
NSString *Apple;
然后
@property (nonatomic, retain) NSString *Banana;
@property (nonatomic, retain) NSString *Apple;
在.m file
中,我想调用这些属性,可能在我的viewdidload
中,然后在里面给它们一些字符串,所以当我运行我的应用程序时,它会显示字符串。
答案 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";