ios - 将按钮 socket 添加到 IBoutletCollection Xcode
<p><p>我想将 15 个 <code>UIButtons</code> 添加到 <code>IBOutletCollection</code> 并分别更改每个 <code>UIButton</code> 的标签。我可以为每个按钮分配一个<strong>标签</strong>,然后以某种方式更改与按钮标签相关的按钮标签吗?或者他们需要单独的 socket 让我更改单独的按钮标签?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在按钮单击方法中编写此代码。设置 <strong>tag</strong> 并检查条件并设置
特定<strong>标签</strong></p>的<strong>title</strong>
<pre><code>-(IBAction)btnClick:(id)sender{
UIButton * btn = (UIButton *)sender;
int btag = btn.tag;
if(btag == 1)
;
else if (btag == 2)
;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 将按钮 socket 添加到 IBoutletCollection Xcode,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/25074899/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/25074899/
</a>
</p>
页:
[1]