22 lines
447 B
Swift
22 lines
447 B
Swift
//
|
|
// SplashController.swift
|
|
// iMoviesMVC
|
|
//
|
|
// Created by Eyüp Yasuntimur on 17.12.2022.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
final class SplashController: UIViewController {
|
|
|
|
override func viewDidLoad() {
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(1)) {
|
|
let homeController = HomeBuilder.make()
|
|
self.present(homeController.embedInNavigationController(), animated: false)
|
|
}
|
|
}
|
|
|
|
}
|
|
|