点击tableView中的cell并返回时,怎么取消它的选择状态
2022-12-18 · 百度认证:IT168官方账号,优质数码领域创作者
关注
展开全部
在UITableView里面,选择了某一个cell以后,点击立刻取消该cell的选中状态,可以使用如下方法:\x0d\x0a\x0d\x0a-(void)tableView:(UITableView*)tableViewdidSelectRowAtIndexPath:(NSIndexPath*)indexPath\x0d\x0a{\x0d\x0a//somefunctions\x0d\x0a......\x0d\x0a\x0d\x0a//取消选中状态\x0d\x0a[tableViewdeselectRowAtIndexPath:indexPathanimated:NO];\x0d\x0a}
展开全部
UITableView面选择某cell点击立刻取消该cell选状态使用:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//some functions
......
// 取消选状态
[tableView deselectRowAtIndexPath:indexPath animated:NO];
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//some functions
......
// 取消选状态
[tableView deselectRowAtIndexPath:indexPath animated:NO];
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询