菜鸟教程小白 发表于 2022-12-13 10:06:22

ios - IBOutletCollection 未与 Storyboard 中的 UILabel 连接


                                            <p><p>我有一个 <code>IBoutletCollection</code> 属性连接到 <code>Storyboard</code> 中的几个 <code>UILabels</code>:</p>

<pre><code>@property (weak, nonatomic) IBOutletCollection(UILabel) NSArray *labels;
</code></pre>

<p>叫</p>

<p><code>NSLog(@"%ld",(long)self.labels.count)</code> 在 <code>viewDidLoad</code></p> 之后

<p>得到 <code>0</code> 作为结果。</p>

<p>我在这里得到空的 ivar 是什么问题?</p>

<p><code>Autolayout</code> 有什么问题吗? (是的,我在 <code>Storyboard</code> 中使用它)</p>

<p>感谢您的建议!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>将 <code>weak</code> 改为 <code>strong</code></p>

<p><code>@property (strong, nonatomic) IBOutletCollection(UILabel) NSArray *labels;</code></p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - IBOutletCollection 未与 Storyboard 中的 UILabel 连接,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32221139/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32221139/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - IBOutletCollection 未与 Storyboard 中的 UILabel 连接