zoukankan      html  css  js  c++  java
  • Swift

    Swift - RotateView

    效果

    源码

    https://github.com/YouXianMing/Swift-Animations

    //
    //  RotateView.swift
    //  Swift-Animations
    //
    //  Created by YouXianMing on 16/8/14.
    //  Copyright © 2016年 YouXianMing. All rights reserved.
    //
    
    import UIKit
    
    // MARK: Public class : RotateView
    
    class RotateView: UIView {
    
        // MARK: Properties.
        
        var rotateDuration : NSTimeInterval = 0.25
        
        // MARK: Animation method.
        
        func changeToUpAnimated(animated : Bool) {
            
            UIView.animateWithDuration((animated == true ? self.rotateDuration : 0.0)) {
                
                self.transform = self.defaultTransform
            }
        }
        
        func changeToLeftAnimated(animated : Bool) {
            
            UIView.animateWithDuration((animated == true ? self.rotateDuration : 0.0)) {
                
                self.transform = CGAffineTransformRotate(self.defaultTransform, CGFloat(-M_PI_2))
            }
        }
        
        func changeToRightAnimated(animated : Bool) {
            
            UIView.animateWithDuration((animated == true ? self.rotateDuration : 0.0)) {
                
                self.transform = CGAffineTransformRotate(self.defaultTransform, CGFloat(M_PI_2))
            }
        }
        
        func changeToDownAnimated(animated : Bool) {
            
            UIView.animateWithDuration((animated == true ? self.rotateDuration : 0.0)) {
                
                self.transform = CGAffineTransformRotate(self.defaultTransform, CGFloat(M_PI))
            }
        }
        
        // MARK: Private value & func & system method.
        
        private var defaultTransform : CGAffineTransform!
        
        override init(frame: CGRect) {
            
            super.init(frame : frame)
            defaultTransform = self.transform
        }
        
        required init?(coder aDecoder: NSCoder) {
            
            fatalError("init(coder:) has not been implemented")
        }
    }
  • 相关阅读:
    码云的安装和配置
    Python解释器安装教程和环境变量配置
    Python基础学习
    buuctf CheckIn
    各种小马收集
    buuctf Easysql 小记
    locust
    封装好的日志模块
    实用的测试网站
    列表操作
  • 原文地址:https://www.cnblogs.com/YouXianMing/p/5770992.html
Copyright © 2011-2022 走看看