ios - 在自定义 UITableViewCell 中多次调用 UIButton 单击事件
<p><p>我有一个自定义的 <code>UITableViewCell</code>,其中有一个 <code>UIButton</code>。单击按钮时,单击事件会被多次调用。这是我正在使用的代码。</p>
<p><em>CustomCell.cs</em></p>
<pre><code>public static CustomCell Create ()
{
return ( CustomCell ) Nib.Instantiate ( null , null ) ;
}
internal void BindData()
{
//some code
btnSave.TouchUpInside+= (object sender, EventArgs e) =>
{
Console.WriteLine("button clicked");
};
}
</code></pre>
<p><em>TableSource.cs</em></p>
<pre><code>public override UITableViewCell GetCell (UITableView tableView,NSIndexPath indexPath)
{
CustomCell cell = tableView.DequeueReusableCell ( CustomCell.Key ) as CustomCell ??CustomCell.Create ();
cell.BindData ();
return cell;
}
</code></pre>
<p>知道为什么会这样吗?我是否正确地重复使用了细胞?</p>
<p>谢谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我遇到同样的问题并解决如下,可能对其他人有用:</p>
<pre><code>cell.tnSave.TouchUpInside -= handler;
cell.tnSave.TouchUpInside += handler;
</code></pre>
<p>这将防止多次向按钮的 touchupinsider 事件添加相同的处理程序。处理程序可以定义为:</p>
<pre><code>void handler(Object sender, EventArgs args)
{
Console.WriteLine("button clicked");
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在自定义 UITableViewCell 中多次调用 UIButton 单击事件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/25498047/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/25498047/
</a>
</p>
页:
[1]