一开始还以为是控件的问题,后来查了下百度,没办法谷歌不能用,结果有人说方法写错了
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- (void)tableView:didDeselectRowAtIndexPath:
真是可笑至极,而且还有好多网站博客都复制这个博客的内容,奇怪,这次的搜索关键字为
cell 点两次
重新换了关键字,就出来正确答案了,搞笑啊
didSelectRowAtIndexPath 点两次
解决网址,http://blog.sina.com.cn/s/blog_67d955460102vqrm.html
原因:选中cell时的属性Selection设置成了MultipleSelection了,把它设置为SingleSelection就行了。