美文网首页
iOS Cell的选中阴影渐变效果

iOS Cell的选中阴影渐变效果

作者: 一只帅气的猿 | 来源:发表于2018-08-03 10:48 被阅读295次
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的选中阴影渐变效果

      本文链接:https://www.haomeiwen.com/subject/hwkyvftx.html