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
- map
- Xcode
- collectionview
- uiscrollview
- 리펙토링
- Human interface guide
- 애니메이션
- Protocol
- MVVM
- 리팩토링
- SWIFT
- swift documentation
- 리펙터링
- rxswift
- Clean Code
- clean architecture
- ios
- swiftUI
- RxCocoa
- ribs
- combine
- HIG
- Refactoring
- Observable
- 클린 코드
- tableView
- 스위프트
- UICollectionView
- uitableview
Archives
- Today
- Total
목록SceneDelegate (2)
김종권의 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)
2020. 10. 17. 01:22
[iOS - UI Custom] 13. storyboard제거하여 SceneDelegate에 코딩하기
1. Main.storyboard 제거 2. plist.info -> "Application Scene Manifest" 내부 항목의 "Storyboard Name"제거 3. info.plist파일에 있는 "Main stroyboard file base name"제거 4. SceneDelegate.swift에 코딩 - window전용 scene설정 : 20번 라인 - scene을 통해 window객체 생성 : 23번 라인 - window객체를 활성화 : 30번 라인
iOS 실전 (swift)/UI 커스텀(프로그래밍적 접근)
2020. 4. 30. 22:29