2013-06-21 42 views

回答

2

您可以覆蓋UITableViewCell.SelectionStyle屬性以返回任何UITableViewCellSelectionStyle值,其中包括None

1

每當你創建一個新的單元格,設置cell.selectionStyle = UITableViewCellSelectionStyleNone;

-(UITableViewCell *)tableView:(UITableView *)tableView_ cellForRowAtIndexPath: (NSIndexPath *)indexPath 
{ 

    static NSString *CellIdentifier = @"Cell"; 
    UITableViewCell *cell = [tableView_ dequeueReusableCellWithIdentifier:CellIdentifier]; 
    if (cell == nil) 
    { 
     cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; 
     cell.selectionStyle = UITableViewCellSelectionStyleNone; 
    } 

return cell; 
}