ios UIButton一直旋轉動畫
-(void)viewDidAppear:(BOOL)animated{
UIButton * buyBtn = [[UIButton alloc]initWithFrame:CGRectMake(10, 0, 50, 50)];
[buyBtn setImage:[UIImage imageNamed:@"AppIcon40x40"] forState:UIControlStateNormal];
[segmentView2 addSubview:buyBtn];
buyBtn=[self rotate360DegreeWithImageView:buyBtn];
}
-
(UIButton *)rotate360DegreeWithImageView:(UIButton *)imageView{
CABasicAnimation *animation = [ CABasicAnimation animationWithKeyPath: @"transform" ];
animation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity];
//圍繞Z軸旋轉,垂直與螢幕
animation.toValue = [ NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI/2.0, 0.0, 0.0, 1.0) ];
animation.duration = 3;
//旋轉效果累計,先轉180度,接著再旋轉180度,從而實現360旋轉
animation.cumulative = YES;
animation.repeatCount = MAXFLOAT;
/*下面可以不需要
CGRect imageRrect = CGRectMake(0, 0,imageView.imageView.frame.size.width, imageView.imageView.frame.size.height);
UIGraphicsBeginImageContext(imageRrect.size);
//在圖片邊緣新增一個畫素的透明區域,去圖片鋸齒
[imageView.currentImage drawInRect:CGRectMake(1,1,imageView.imageView.frame.size.width-2,imageView.imageView.frame.size.height-2)];
[imageView setImage: UIGraphicsGetImageFromCurrentImageContext() forState:UIControlStateNormal];
UIGraphicsEndImageContext();
*/
[imageView.layer addAnimation:animation forKey:nil];return imageView;
}
相關文章
- SVG矩形旋轉動畫SVG動畫
- 卡片旋轉動畫效果動畫
- 頁面旋轉動畫效果動畫
- CSS3動畫(360度旋轉、旋轉放大、放大、移動)CSSS3動畫
- CSS動畫之旋轉魔方輪播CSS動畫
- CSS3 loadding旋轉等待動畫CSSS3動畫
- iOS開發-UIButtoniOSUI
- 每週一個前端動畫之四:掘金頭像旋轉動畫前端動畫
- Android SeekBar 自定義thumb,thumb旋轉動畫效果Android動畫
- iOS UIButton之UIButtonType詳解iOSUI
- iOS UIButton之UIControlEvents介紹iOSUI
- iOS UIButton之UIEdgeInsets詳解iOSUI
- iOS螢幕旋轉解決方案iOS
- 微信小程式有旋轉動畫效果的音樂元件微信小程式動畫元件
- 直播app系統原始碼,圖片Loading旋轉動畫效果APP原始碼動畫
- iOS 動畫iOS動畫
- Android基礎動畫之alpha透明度/translate平移/rotate旋轉Android動畫
- app直播原始碼,css預載入旋轉動畫 與 流光字型APP原始碼CSS動畫
- iOS 面向協議封裝全屏旋轉功能iOS協議封裝
- [轉]旋轉矩陣:點旋轉和座標系旋轉矩陣
- IOS動畫使用iOS動畫
- iOS 動畫之Spring動畫、Block動畫、GIF圖iOS動畫SpringBloC
- 直播軟體開發,css預載入旋轉動畫 與 流光字型CSS動畫
- 影片直播app原始碼,css預載入旋轉動畫與流光字型APP原始碼CSS動畫
- ios一句程式碼搞定螢幕旋轉iOS
- iOS Tabbar中間新增凸起可旋轉按鈕iOStabBar
- 系統學習iOS動畫之四:檢視控制器的轉場動畫iOS動畫
- iOS動畫全面解析iOS動畫
- iOS UIView基本動畫iOSUIView動畫
- iOS 動畫技巧 (一)iOS動畫
- 直播軟體原始碼,CSS3實現圖片立體旋轉動畫原始碼CSSS3動畫
- iOS仿抖音點贊動畫、波浪圖、主張圖、3D旋轉、圖片處理、播放器等原始碼iOS動畫3D播放器原始碼
- 大殺器Bodymovin和Lottie:把AE動畫轉換成HTML5/Android/iOS原生動畫動畫HTMLAndroidiOS
- iOS 關鍵幀動畫iOS動畫
- iOS 動畫之CoreAnimation(CALayer)iOS動畫
- 聊聊iOS中的動畫iOS動畫
- iOS實現字串動畫iOS字串動畫
- 旋轉字串字串
- 旋轉相簿