我收到NSMutableArray的空值,并且已经检查是否已正确填充。

我做错了什么?

这是我的代码:

.h文件

@property (nonatomic, retain) NSMutableArray *arrayQuattro;


.m文件

@synthesize arrayQuattro;

//when set
 self.arrayQuattro = [[NSMutableArray alloc] init];
 [self.arrayQuattro addObjectsFromArray:llistaArxius];

//and when is called and receive empty value,

for (int i; i < self.arrayQuattro.count; i++){
...

最佳答案

试试看这应该为您工作。

 `self.arrayQuattro = [[NSMutableArray alloc] initWithArray:llistaArxius];`


希望这可以帮助。

关于iphone - 正确填充后为空数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9992020/

10-10 11:52