iOS项目开发经验:【常用代码6】

<6-1>取消tableViewCell选中状态

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
 { 
   //some functions 
   ...... 
 [tableView deselectRowAtIndexPath:indexPath animated:NO];//取消点击状态
 }

<6-2>UITableView设置背景图片

    UIView *view = [[UIView alloc] init];
    view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"table_bg.png"]];
    self.tableView.backgroundView = view;

<6-3>

 

<6-4>

<6-5>

<6-6>

 

<6-7>

 

 

你可能感兴趣的:(★iOS篇)