這篇文章主要介紹“cell怎么實現(xiàn)旋轉(zhuǎn)動畫效果”,在日常操作中,相信很多人在cell怎么實現(xiàn)旋轉(zhuǎn)動畫效果問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”cell怎么實現(xiàn)旋轉(zhuǎn)動畫效果”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
這篇文章主要介紹“cell怎么實現(xiàn)旋轉(zhuǎn)動畫效果”,在日常操作中,相信很多人在cell怎么實現(xiàn)旋轉(zhuǎn)動畫效果問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”cell怎么實現(xiàn)旋轉(zhuǎn)動畫效果”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供萊蕪網(wǎng)站建設(shè)、萊蕪做網(wǎng)站、萊蕪網(wǎng)站設(shè)計、萊蕪網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、萊蕪企業(yè)網(wǎng)站模板建站服務(wù),十多年萊蕪做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
tableView角度旋轉(zhuǎn)動畫.gif
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {CATransform3D rotation;rotation = CATransform3DMakeRotation( (90.0*M_PI)/180, 0.0, 0.7, 0.4);rotation.m44 = 1.0/ -600;//陰影cell.layer.shadowColor = [[UIColor blackColor]CGColor];//陰影偏移cell.layer.shadowOffset = CGSizeMake(10, 10);cell.alpha = 0;cell.layer.transform = rotation;//錨點cell.layer.anchorPoint = CGPointMake(0.5, 0.5);[UIView beginAnimations:@"rotation" context:NULL];[UIView setAnimationDuration:0.8];cell.layer.transform = CATransform3DIdentity;cell.alpha = 1;cell.layer.shadowOffset = CGSizeMake(0, 0);[UIView commitAnimations];}