我想在类中添加一个数组并给它一些值并在主类中调用它。我正在使用
@property(nonatomic) NSArray *subject;
但我无法从实现类访问它。我想访问它并在其中添加一些随机值。
答案 0 :(得分:1)
#import "yourClass.h"
@implementation yourClass
@synthesize subject;
- (void)viewDidLoad
{
[super viewDidLoad];
subject=[[NSArray alloc]initWithObjects:@"one",@"two",@"three", nil];
}
在你的class.m @implementation下面 合成你的数组
答案 1 :(得分:0)
您可以使用{{}}
或强>
_subject
像:
Synthesize your property in your `.m file`