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

UITableViewCell不可以选中

时间:2015-11-16 19:50:47      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

1.把UITableViewCell的SelectionStyle属性设置为:UITableViewCellSelectionNone。

cell.selectionStyle = UITableViewCellSelectionStyleNone;



2.通过UITableViewDelegate的代理方法tableView:willSelectRowAtIndexPath:;如果不希望选中,可以直接返回nil,如果希望选中,可直接返回NSIndexPath;另通过这种方法可以设置部分UITableViewCell可以选中,部分不可以选中

- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    //可选UITableViewCell
    if (true) {
        return indexPath;
    }
    //不可选UITableViewCell
    return nil;
}



UITableViewCell不可以选中

标签:

原文地址:http://my.oschina.net/simple2012/blog/531015

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