uitableview 禁止滑动 和 选择行不高亮

禁止高亮:
cell
.selectionStyle =UITableViewCellSelectionStyleNone;

or

[cell setSelectionStyle:UITableViewCellSelectionStyleNone];

禁止滑动:
tableView.scrollEnabled = NO;
 

posted on 2013-04-03 15:35  fishyk  阅读(478)  评论(0编辑  收藏  举报

导航