일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 인증
- 안드로이드
- albumbook
- OSX
- SSH
- git
- kmip
- OTP
- apple
- MSYS2
- Android
- 애플
- MFA
- 앱스토어
- 앨범북
- 2FA
- fido
- SSL
- appres
- FIDO2
- WebAuthn
- css
- Xcode
- otpkey
- Nodejs
- SwiftUI
- openssl
- SWIFT
- 앱리소스
- MYSQL
Archives
- Today
- Total
인디노트
iOS 앱 개발시 블랙 화면만 표시되는 경우 본문
아마도 다음과 같은 콘솔 출력도 있을 것이다.
[Application] The app delegate must implement the window property if it wants to use a main storyboard file.
이것은 예전에는 없는 현상인데 iOS 13 부터 UISceneDelegate 를 사용하는데 xcode 에서 해당 앱을 iOS 12 이하로 재 설정하는 경우 발생된는것 같다.
다음과 같이 AppDelegate.h 에 한줄을 추가하면 해결 된다.
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
@property (strong, nonatomic) UIWindow *window;
반응형
'소스 팁 > Objective C, Swift, iOS, macOS' 카테고리의 다른 글
macOS 앱 개발시 iOS 같은 UIImage 를 사용하고 싶은때 (0) | 2021.04.10 |
---|---|
맥용 (macOS) 메뉴바 앱 (menu bar app) 만들기 - SwiftUI 편 (0) | 2021.04.09 |
Apple App Icon json Sample (0) | 2020.08.26 |
iCloud 테스팅과 디버깅:Key-Value 스토리지와 Document 스토리지 (iOS & OS X 프로그래밍 가이드) (0) | 2019.04.07 |
iCloud CloudKit 설계하기 (iOS & OS X 프로그래밍 가이드: 클라우드킷) (0) | 2019.04.07 |
Comments