class.m中的数组以及如何在其中添加值Objective-c

时间:2016-06-16 05:41:08

标签: objective-c nsarray

我想在类中添加一个数组并给它一些值并在主类中调用它。我正在使用

@property(nonatomic) NSArray *subject;

但我无法从实现类访问它。我想访问它并在其中添加一些随机值。

2 个答案:

答案 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`