新手在这里(对C,Objective-C和iOS)......
对于我的AppDelegate.m中的此代码,为什么新初始化的数组为空?在我看来,我给它一些价值观。 Clue1等是UILabel系列,Xcode没有注意到任何问题。我已经经历了相当多的事情,这似乎是这样做的方式。 Xcode 4.2。谢谢!
- (id)init {
self = [super init];
if(self) {
// Make arrays containing the objects: this is the objective-C way!
self.clueLabs = [[NSMutableArray alloc] initWithObjects: Clue1, Clue2, Clue3, nil];
}
NSLog(@"%@", [clueLabs description]);
if (!clueLabs || ![clueLabs count]) { // these 2 do m/l the same thing
NSLog(@"clueLabs is empty!");
}
return self;
}
答案 0 :(得分:3)
检查Clue1,Clue2 Clue3是否不是nils。