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 |
Tags
- tableView
- 리펙토링
- 애니메이션
- collectionview
- rxswift
- ios
- Xcode
- 리펙터링
- swiftUI
- map
- 스위프트
- clean architecture
- RxCocoa
- HIG
- uitableview
- SWIFT
- UITextView
- Clean Code
- Protocol
- ribs
- MVVM
- uiscrollview
- combine
- 리팩토링
- swift documentation
- UICollectionView
- Refactoring
- Observable
- Human interface guide
- 클린 코드
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 디폴트 storyboard 없이 구현 방법 (스토리보드 없이 코딩 방법) 본문
storyboard, SceneDelegate 제거
- storyboard 삭제
- Main.storyboard 삭제
- target의 main interface 에서 설정된 스토리보드 해제
- SceneDelegate 삭제
- info.plist에 Application Scene Manifest 삭제
- SceneDelegate.swift 삭제
- AppDelegate.swift에 UISsceneSession Lifecycle 관련 메소드 2개 삭제
구체적인 Main.storyboard 삭제 방법
- info.plist의 Main storyboard file base name 삭제
- Storyboard Name 삭제
- Main.storyboard 삭제
- AppDelegate.swift에 storyboard 없이 새로운 화면으로 UIWindow로 초기화
(storyboard 없이 코드로만 작업하는 경우나, 특정 ViewController를 초기화 화면으로 하고싶은 경우)
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
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 - swift] == 와 === 의 차이 (+ Equtable) (0) | 2021.03.26 |
---|---|
[iOS - swift] xib로 ViewController 만들기 (3) | 2021.03.22 |
[iOS - swift] LaunchScreen, splash 화면 설정 (+ black screen 에러, testlight에서 UIImageView가 안보이는 문제 해결방법) (0) | 2021.03.21 |
[iOS - swift] 전처리기, 전처리문(#if DEBUG), Active Compilation Conditions, OTHER_SWIFT_FLAGS (0) | 2021.03.19 |
[iOS - swift] switch문 CaseIterable, allCases (0) | 2021.03.14 |
Comments