设置cell选中后一段时间颜色自动消失

来源:互联网 发布:手机版进销存软件排行 编辑:程序博客网 时间:2024/05/21 11:44
//个性化点击效果
-(
void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath{
   
    [
selfperformSelector:@selector(deselect)withObject:nilafterDelay:0.2f];
   
}
-(
void)deselect{
    [
self.tableViewdeselectRowAtIndexPath:[self.tableViewindexPathForSelectedRow]animated:YES];
}

//============系统样式===================
self.selectionStyle= UITableViewCellSelectionStyleDefault;
   
   
/**
     *  UITableViewCellSelectionStyleNone,//
没有现象
     UITableViewCellSelectionStyleBlue, 
灰色
     UITableViewCellSelectionStyleGray,
     UITableViewCellSelectionStyleDefault
     */
0 0