美文网首页
iOS图片滑动时候渐变效果

iOS图片滑动时候渐变效果

作者: 李某lkb | 来源:发表于2017-03-31 20:40 被阅读197次

看到不少app滑动图片时候有渐变效果,用户体验很好.
其实很简单.

 - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
   
cell.imageView.alpha=0.4;

[UIView animateWithDuration:0.3 animations:^{
       cell.imageView.alpha=1;
   }];


}

//赶快去试试吧

相关文章

网友评论

      本文标题:iOS图片滑动时候渐变效果

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