菜鸟教程小白 发表于 2022-12-13 11:04:24

objective-c - 刚初始化的数组是空的 - 为什么?


                                            <p>这里的新手(到 C、objective-C 和 iOS)...<br><br>对于我 AppDelegate.m 中的这段代码,为什么刚初始化的数组是空的?在我看来,我给了它一些值(value)。 Clue1 等是一系列 UILabels,Xcode 没有注意到任何问题。我已经经历了很多,这似乎是这样做的方法。 Xcode 4.2。谢谢!<br><pre><code>- (id)init {      
    self = ;
    if(self) {         
      // Make arrays containing the objects: this is the objective-C way!
       self.clueLabs = [ initWithObjects: Clue1, Clue2, Clue3, nil];
    }   
    NSLog(@&#34;%@&#34;, );
    if (!clueLabs || !) { // these 2 do m/l the same thing
      NSLog(@&#34;clueLabs is empty!&#34;);
    }      
    return self;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p>检查 Clue1、Clue2 Clue3 是否不为零。</p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 刚初始化的数组是空的 - 为什么?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9050912/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9050912/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 刚初始化的数组是空的 - 为什么?