フェードイン・フェードアウト処理は、アプリ開発していて頻出の処理だと思います。 ベタ書きでも普通に書けちゃう程度の簡単な処理なのでそうしている人が多い気がしますが、メソッド用意しておくと地味にかなり便利です。 enum FadeType: NSTimeInterval { case Normal = 0.2, Slow = 1.0 } extension UIView { func fadeIn(type: FadeType = .Normal, completed: (() -> ())? = nil) { fadeIn(duration: type.rawValue, completed: completed) } /** For typical purpose, use "public func fadeIn(type: FadeType = .Normal, completed: