iphone - 当我们持有 UITableViewCell 时会调用哪个方法
<p><p>当我们选择 UITableViewCell 时比 <code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath</code> 调用了。</p>
<p>但是如果我们持有 UITebleViewCell 会调用哪个方法。伙计们,我的问题是我创建了一个包含大单元格的表格 View ,并且在该单元格中我正在设置各种 ViewView 的背景颜色。</p>
<p>当我选择单元格时,我的单元格的背景颜色将消失。我已经通过在 <code>didSelectRowAtIndexPath</code> 这样的方法中再次设置 View 背景颜色解决了这个问题。</p>
<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *selectedCell = ;
UIView *vLineview=;
vLineview.backgroundColor = ;
}
</code></pre>
<p>这成功了,我的 View 背景颜色将显示,但是当我拿着 UITableViewCell 时,它会再次消失。</p>
<p>我该如何解决这个问题?我是否必须和手势识别器来检测长触摸并在其中实现我的 View 背景方法?或者还有其他可用的方法。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>尝试在 cellForRowAtIndexPath 中设置单元格选择样式 none like this</p>
<pre><code>;
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 当我们持有 UITableViewCell 时会调用哪个方法,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/17190902/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/17190902/
</a>
</p>
页:
[1]