如果UITableView中某一行不允许点击变蓝色如何设置?
摘要:
要在cellForRowAtIndexPath的代理方法中,对应的cell加入cell.selectionStyle=UITableViewCellSelectionStyleNone;下面是我的开发代码,进攻参考- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ if (indexPath.section == 0) { static NSString *TableViewCell = @"TableViewCell" 阅读全文
posted @ 2012-08-28 10:48 刚冲出起跑线的人 阅读(3231) 评论(0) 推荐(0) 编辑