首页

源码搜藏网

首页 > 安卓源码 > 控件分类 > 按钮表单 >

登录加载、返回按钮转场动画控件

创建时间:2016-08-13 22:32  

登录加载、返回按钮转场动画控件
登录加载、返回按钮转场动画控件
暂无演示 立即下载

ProgressButton

登录加载、返回按钮转场动画控件 开始学习swift,看到的一个栗子,感觉很酷,于是就模仿了 swift代码,浏览更多安卓源码

 
Installation
pod 'TKSubmitTransition'
use_frameworks!

Usage

This is SubClass of UIButton

btn = TKTransitionSubmitButton(frame: CGRectMake(0, 0, 44, 44))

Animation Method

func didStartYourLoading() {
    btn.startLoadingAnimation()
}

func didFinishYourLoading() {
    btn.startFinishAnimation {
        //Your Transition
        let secondVC = SecondViewController()
        secondVC.transitioningDelegate = self
        self.presentViewController(secondVC, animated: true, completion: nil)
    }
}

TKFadeInAnimator

This Library also supply fade-in Animator Class of UIViewControllerAnimatedTransitioning.

Please use This for transition animation.

Usage

please use UIViewControllerTransitioningDelegate

class ViewController: UIViewController, UIViewControllerTransitioningDelegate {

secondVC.transitioningDelegate = self

// MARK: UIViewControllerTransitioningDelegate
func animationControllerForPresentedController(presented: UIViewController, presentingController presenting: UIViewController, sourceController source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
    let fadeInAnimator = TKFadeInAnimator()
    return fadeInAnimator
}
func animationControllerForDismissedController(dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
    return nil
}

上一篇:Android 下高仿 iOS 的增强版滑动开关组件,含实现原理EasySwitc
下一篇:自定义支持圆角Button按钮

相关内容

热门推荐