iOS Cell的选中阴影渐变效果

cell.selectionStyle = UITableViewCellSelectionStyleDefault;
/** 其实三种效果感觉都一样的
    UITableViewCellSelectionStyleBlue,
    UITableViewCellSelectionStyleGray,
    UITableViewCellSelectionStyleDefault
 **/

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
 
   // 取出选中的indexPath
    NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
    // 取出选中的cell
    UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
    // 设置selected, 加上动画
    [cell setSelected:NO animated:YES];
}


你可能感兴趣的:(iOS Cell的选中阴影渐变效果)