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

点击按钮,使按钮进行左右翻转动画

时间:2017-01-03 20:46:53      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:button   flip   rom   ati   normal   imp   over   title   private   

 1 // UIView.transition
 2 
 3 // 1、可以设置从一个View到另一个View的转场动画
 4 // UIView.transition(from: <#T##UIView#>, to: <#T##UIView#>, duration: <#T##TimeInterval#>, options: <#T##UIViewAnimationOptions#>, completion: <#T##((Bool) -> Void)?##((Bool) -> Void)?##(Bool) -> Void#>)
 5 
 6 // 2、可以设置一个View的动画(比如翻转)
 7 // UIView.transition(with: <#T##UIView#>, duration: <#T##TimeInterval#>, options: <#T##UIViewAnimationOptions#>, animations: <#T##(() -> Void)?##(() -> Void)?##() -> Void#>, completion: <#T##((Bool) -> Void)?##((Bool) -> Void)?##(Bool) -> Void#>)
 8 
 9 import UIKit
10 
11 class ViewController: UIViewController {
12     
13     private var isZhengMian:Bool = true
14     
15     override func viewDidLoad() {
16         super.viewDidLoad()
17     }
18     
19     @IBAction func btnClick(_ sender: UIButton) {
20         isZhengMian = !isZhengMian
21         if isZhengMian{ // 正面,带文字,从左向右翻转
22             UIView.transition(with: sender, duration: 0.5, options: UIViewAnimationOptions.transitionFlipFromLeft, animations: {
23                 sender.setTitle("?", for: .normal)
24             }, completion: { (_) in
25                 
26             })
27         } else{ // 反面,不带文字,从右向左翻转
28             UIView.transition(with: sender, duration: 0.5, options: UIViewAnimationOptions.transitionFlipFromRight, animations: {
29                 sender.setTitle(nil, for: .normal)
30             }, completion: { (_) in
31                 
32             })
33         }
34     }
35 }

 

点击按钮,使按钮进行左右翻转动画

标签:button   flip   rom   ati   normal   imp   over   title   private   

原文地址:http://www.cnblogs.com/panda1024/p/6245911.html

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