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

ios - 在 subview 中查找所有 UIButton


                                            <p><p>我的 <code>UIViewController</code>View 中有一个 <code>UIButton</code>。我还有十个在主视图的 <code>subview</code> 中。我想找到所有这些按钮。到目前为止,我有:</p>

<pre><code>-(void)findAllButtons{

    for(UIView *view in self.view.subviews) {
      if (]){
            NSLog(@&#34;found a button!&#34;);         
      }
    }
}
</code></pre>

<p>它只找到一个按钮,而不是其他十个。这是为什么?它不应该迭代每一个 <code>subview</code> 然后找到它们吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>for (UIView *subView in scroll.subviews) {
      if (]) {
            UIButton *btn = (UIButton*)subView;
            if (btn.tag == selectedButton.tag) {
                btn.layer.borderWidth = 1.0f;
                btn.layer.borderColor = .CGColor;
            }else{
                btn.layer.borderWidth = 1.0f;
                btn.layer.borderColor = .CGColor;
            }
      }
    }
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 subview 中查找所有 UIButton,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33609443/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33609443/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 subview 中查找所有 UIButton