看到不少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;
}];
}
//赶快去试试吧
网友评论