for (XMLProductView *pV in entries) {
NSString *test = pV.appName;
[allTableData addObject:test];
NSLog(@"Entries: %@", allTableData);
}
在我的
NSString *test
中,我得到了所有结果。为什么NSMutableArray
'allTableData'显示为Null
? 最佳答案
很难说,因为您仅添加了一些信息,但是可能您没有正确分配它。
尝试在添加之前添加:
allTableData = [[NSMutableArray alloc] init];
for (XMLProductView *pV in entries) {
NSString *test = pV.appName;
[allTableData addObject:test];
}
NSLog(@"Entries: %@", allTableData);
-
编辑
我编辑了代码以使其清晰。
关于objective-c - iOS:NSMutableArray为空,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12030822/