목록statusBarManager (2)
투케이2K
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : OBJECTIVE-C [소스 코드] // [try catch 구문 정의 실시] @try { // --------------------------------------------- // [로직 처리 실시] // --------------------------------------------- //* dispatch_async(dispatch_get_main_queue(), ^{ UIWindow *window = [[[UIApplication sharedApplication] windows] objectAtIndex:0]; CGFloat height = window.windowScene.statusBarManager.statusBarFram..
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT5 [소스 코드] // ----------------------------------------- // [프레임 상태 표시줄 높이 확인] // ----------------------------------------- //let statusBarHeight = UIApplication.shared.statusBarFrame.height var statusBarHeight: CGFloat = 0 if #available(iOS 13.0, *) { let window = UIApplication.shared.windows.filter {$0.isKeyWindow}.first statusBarHeight = window?.windowSc..