菜鸟教程小白 发表于 2022-12-12 23:46:15

ios - 单击按钮时选择 tableViewCell


                                            <p><p>我有一个带有自定义单元格的 tableView。
在每个单元格中我都有一个 UIButton。当我单击单元格内的按钮时,我希望该单元格突出显示,但是当我单击单元格时,我不希望这种情况发生。
你知道有什么办法吗?
谢谢</p>

<p>直到现在我有这个代码:</p>

<pre><code>- (IBAction)buttonMethod: (id)sender {
UIButton *b = (UIButton *) sender;
UITableViewCell *cell = (UITableViewCell *)[[ superview] superview];
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
;
}
</code></pre>

<p>但单元格也在 -didSelectRow 中突出显示。</p>

<pre><code>- (UITableViewCell *)tableView: (UITableView *) tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @&#34;CustomCell&#34;;

CustomCell *cell = (CustomCell *) ;
NSAssert(cell, @&#34;cell -&gt; nil&#34;);
NSDictionary *cellData = ;
cell.selectionStyle = UITableViewCellSelectionStyleBlue;

;

return cell;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>使用这个 <code>UITableViewDelegate</code> 方法:</p>

<pre><code>- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    return nil;
}
</code></pre>

<p>这样,当用户点击单元格时无法选择它们,但您仍然可以通过编程方式选择它们。</p>

<p>也使用</p>

<blockquote>
<p>selectRowAtIndexPath:animated:scrollPosition:</p>
</blockquote>

<p>在您的 <code>UITableView</code> 上,而不是 <code>UITableViewCell</code> 上的 <code>setSelected:animated:</code> 可能会更好。单元格可以重复使用,当它发生时选择可能会消失。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 单击按钮时选择 tableViewCell,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24651103/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24651103/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 单击按钮时选择 tableViewCell