导航

知识点积累(持续更新)

Posted on 2014-01-22 13:52  iOS攻城师  阅读(130)  评论(0编辑  收藏  举报

1、UITableViewCell

(1)属性

-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath

{

 Cell.selectionStyle = UITableViewCellSelectionStyleNone;  //禁用高亮状态

 Cell.userInteractionEnabled = NO; //禁用点击cell Action 事件

}