説明なし

FadeToastAnimator.swift 584B

    // // FadeToastAnimator.swift // PaiaiUIKit // // Created by ffib on 2019/1/21. // Copyright © 2019 yb. All rights reserved. // import Foundation 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) } }