grape

[iOS] UI portrait fixed(세로 고정) 본문

dev/ios

[iOS] UI portrait fixed(세로 고정)

grapelab 2023. 9. 19. 10:49

AppDelegate

 

Function Add

(UIApplicationDelegate function override)

 

    func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {

        // portrait fixed

        return UIInterfaceOrientationMask.portrait

    }

'dev > ios' 카테고리의 다른 글

[iOS]Unable to install Xcode app  (0) 2024.02.22
[Mac] 숨긴 파일 표시  (0) 2023.10.03
[iOS]DispatchQueue concurrency  (0) 2023.09.19
[iOS]Swift Value Memory Study  (0) 2023.09.18
[iOS]DispatchQueue.global  (0) 2023.09.18