Notice
Recent Posts
Recent Comments
Link
투케이2K
27. (ios/swift) 모바일 화면 세로 방향 고정 실시 - AppDelegate portrait 본문
[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT
[소스 코드]
// MARK: [모바일 화면 세로 고정 : 함수 추가]
func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
print("")
print("===============================")
print("[AppDelegate >> supportedInterfaceOrientationsFor() : 모바일 화면 세로 고정]")
print("===============================")
print("")
// [세로 방향 고정]
return UIInterfaceOrientationMask.portrait
}
[결과 출력]
반응형
'IOS' 카테고리의 다른 글
Comments