码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView Cell 弹簧动画效果

时间:2016-06-29 20:43:14      阅读:905      评论:0      收藏:0      [点我收藏+]

标签:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

cell.transform = CGAffineTransformMakeTranslation(0, 40);
[UIView animateWithDuration:0.8 animations:^{

cell.transform = CGAffineTransformIdentity;
}];


}

UITableView Cell 弹簧动画效果

标签:

原文地址:http://www.cnblogs.com/myios/p/5628013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!