您的位置:首页 > 其它

tableView//collectionView加载时的动画

2015-07-16 14:10 344 查看
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath
*)indexPath {

ProjectIntroViewCell *cell = [collectionView
dequeueReusableCellWithReuseIdentifier:COLLECTIONVIEW_CELLID
forIndexPath:indexPath];

[cell updateUIWithModel:model];

// cell.layer.transform = CATransform3DMakeScale(0.1, 0.1, 1);

// //设置动画时间为0.25秒,xy方向缩放的最终值为1

// [UIView animateWithDuration:0.25 animations:^{

// cell.layer.transform = CATransform3DMakeScale(1, 1, 1);

// }];

return cell;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: