这里的新手(适用于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;
}

最佳答案

检查Clue1,Clue2 Clue3是否不是nil。

关于objective-c - 刚初始化数组为空-为什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9050912/

10-09 00:44