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 |
Tags
- combine
- HIG
- MVVM
- 리팩토링
- Human interface guide
- Refactoring
- tableView
- swiftUI
- 애니메이션
- 스위프트
- Observable
- scrollview
- RxCocoa
- rxswift
- clean architecture
- Clean Code
- UITextView
- collectionview
- Xcode
- swift documentation
- SWIFT
- 리펙토링
- uiscrollview
- uitableview
- UICollectionView
- Protocol
- map
- ribs
- ios
- 클린 코드
Archives
- Today
- Total
목록SceneDelegate (2)
김종권의 iOS 앱 개발 알아가기
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
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