Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 리펙토링
- UITextView
- Observable
- ios
- combine
- swift documentation
- Protocol
- uiscrollview
- SWIFT
- tableView
- Refactoring
- rxswift
- 애니메이션
- scrollview
- collectionview
- HIG
- clean architecture
- Human interface guide
- MVVM
- ribs
- 클린 코드
- 스위프트
- uitableview
- 리팩토링
- RxCocoa
- swiftUI
- Clean Code
- Xcode
- map
- UICollectionView
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] iOS13버전 이상에서 SceneDelegate삭제하기 본문
info.plist에서 해당 부분 삭제

AppDelegate.swift에서 함수 두 가지 삭제

SceneDelegate.swift삭제 후 AppDelegate 수정
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = ViewController() // 특정 ViewController
window?.makeKeyAndVisible()
return true
}
(정상 빌드 성공)
'iOS 응용 (swift)' 카테고리의 다른 글
| [iOS - swfit] Codable 사용방법 (Encode, Decode) (0) | 2020.10.18 |
|---|---|
| [iOS - swift] scroll view에서 원하는 위치로 scroll하기 (0) | 2020.10.17 |
| [iOS - swift] nib 개념, 앱의 sandbox (0) | 2020.10.01 |
| [iOS - swift] NFC, NFD (한글 자소 분리 해결) (0) | 2020.08.30 |
| [iOS - swift] codable을 이용한 json 파싱 (0) | 2020.08.30 |
Comments