iOS图片滑动时候渐变效果

2017-03-31  本文已影响197人  李某lkb

看到不少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;
   }];


}

//赶快去试试吧

上一篇 下一篇

猜你喜欢

热点阅读