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

ios - 按钮标签不能在循环中使用动态值?


                                            <p><p>请检查我的代码:</p>

<pre><code>for (i = 0; i &lt; fifth_img.count; i++)
{
    UIButton *aButton = ;
    aButton.frame   = CGRectMake(xCord, yCord + space,buttonWidth,buttonHeight);
    ;
    forState:UIControlStateNormal];
    aButton.titleLabel.font = ;

    aButton.tag = i;
    ] forState:UIControlStateNormal];
    ;
    yCord += buttonHeight + space;
}
;
;


for( int b=0; b&lt;6; b++){
    [(UIButton *) setBackgroundImage:] forState:UIControlStateNormal];
}
</code></pre>

<p>当我将 5 或 3 或 1 放入 viewWithTag:5 时,它正在工作,但当我只放入 b 时,应用程序崩溃。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>确保 Vu_leftPanel 没有任何其他标签在 0 到 6 之间的 View<strong>[因为 View 的默认标签是 0]</strong>。因为 setBackgroundImage:forState: 方法只能在 UIButton 上调用。
如果任何其他 View 收到此方法调用,则应用程序将崩溃,并将无法识别的选择器发送到实例异常。</p>

<p>尝试将标签从 1000 设置为 1006。然后尝试设置背景图像。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 按钮标签不能在循环中使用动态值?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31985190/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31985190/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 按钮标签不能在循环中使用动态值?