在同一视图中的同一单元格上打开/关闭 UITableView 中的单元格
是否可以使 UITableView 中的一个单元格具有开/关行为?基本上,当我单击一个单元格时,它会变成绿色,这就是我想要的。它不会转到另一个 viewController 或任何东西。但是,当我在同一视图中再次单击同一单元格时,我希望绿色消失并返回到之前的颜色状态。
这就是我的 didSelectRowAtIndexPath
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *selectedPhrase = [dataTable objectAtIndex:indexPath.row];
[self setCurrentPhrase:selectedPhrase];
}
这似乎是一个简单的问题。我知道我可以放入 [tableView deselectRowAtIndexPath:indexPathAnimated:YES];
但这只会使它在我单击它后立即取消突出显示。
谢谢!
亚伦
Is it possible to make one cell in a UITableView have an ON/OFF behavior? Basically, when I click a cell, it becomes green, which is what I want. It doesnt go to another viewController or anything. But then when I click that same cell again, in the same view, I want the green to disappear and for it to return back to it's previous color state.
This is how I have my didSelectRowAtIndexPath
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *selectedPhrase = [dataTable objectAtIndex:indexPath.row];
[self setCurrentPhrase:selectedPhrase];
}
This seems like an easy question. I know I can drop in the [tableView deselectRowAtIndexPath:indexPath animated:YES];
but that just makes it unhighlighted right away after I click it.
Thanks!
Aaron
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在选择时更改
UITableViewCell
的背景颜色,因此您可以使用 BOOL,它会告诉您要填充背景的内容(无论是绿色还是透明颜色)。通过以下方法访问您的单元格
使用以下作为参考代码。
you could change the background color of you
UITableViewCell
on selection, So you may use BOOL which will tell you what to fill in background (whether green or just clear color).Access you cell through the below method
Use below as the reference code.