UITableViewcell选中后怎么去掉背景灰色详解手机开发

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath]; 
    cell.selectionStyle = UITableViewCellSelectionStyleNone; 
} 
在这个函数里写上cell.selectionStyle = UITableViewCellSelectionStyleNone;就ok了

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/5219.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论