我們在點(diǎn)擊UITableView 的cell時堤框,會出現(xiàn)陰影,如不做處理,就會一直顯示蜈抓,怎么樣讓它點(diǎn)擊之后就消失呢启绰?只要重寫UITableView的代理方法,就可以解決资昧,方式如下:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//當(dāng)手指離開某行時酬土,就讓某行的選中狀態(tài)消失
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
第二,代碼代碼中修改
UITableViewCell *cell;
......
......
cell.selectionStyle = UITableViewCellSelectionStyleNone;