|
//
// FadeToastAnimator.swift
// PaiaiDataKit
//
// Created by FFIB on 2019/1/21.
// Copyright © 2019 FFIB. All rights reserved.
//
import UIKit
class FadeToastAnimator: ToastAnimator {
func toastIn(in view: UIView, completion: ((Bool) -> Void)?) {
UIView.animate(withDuration: 0.5, animations: {
view.alpha = 1
}, completion: completion)
}
func toastOut(in view: UIView, completion: ((Bool) -> Void)?) {
UIView.animate(withDuration: 0.5, animations: {
view.alpha = 0
}, completion: completion)
}
}
|