Swift-[런처스크린 불러오기]
1. IOS 런처 스크린 해당 디바이스 크기로 불러오기 /// Get the lauch image. class var LaunchImage : UIImage { get { var lauchImage : UIImage! var viewOrientation : String! let viewSize = UIScreen.main.bounds.size let orientation = UIApplication.shared.statusBarOrientation if orientation == .landscapeLeft || orientation == .landscapeRight { viewOrientation = "Landscape" } else { viewOrientation = "Portrait" } let im..