码迷,mamicode.com
首页 > 其他好文 > 详细

tableView里选中一行cell其它不选中的方法

时间:2017-02-17 10:17:18      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:uitable   tab   void   --   selectrow   sse   全局   方法   ext   

方法1:

#pragma mark--选中状态

 

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    GASSelectNextTableViewCell *cell = (GASSelectNextTableViewCell *)[tableView cellForRowAtIndexPath:indexPath];

    cell.selectedBtn.selected  = YES;

    

    }

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {

    GASSelectNextTableViewCell *cell = (GASSelectNextTableViewCell *)[tableView cellForRowAtIndexPath:indexPath];

    cell.selectedBtn.selected  = NO;

 

}

方法2:

1.定义一个全局的Button

2.然后让他选中

tableView里选中一行cell其它不选中的方法

标签:uitable   tab   void   --   selectrow   sse   全局   方法   ext   

原文地址:http://www.cnblogs.com/shitou123/p/6408404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!