티스토리 뷰
Story Board 는 UI 와 전체적인 화면 구성을 파악하는데 좋은 구조이지만,
협업 등 소스코드 형상관리에 약간의 문제가 있는 경우가 있다.
필요에 따라 Story Board 없는 프로젝트로 진행하고 싶을 때, 아래와 같이 진행하면 된다.
STEP 1) Project 생성
STEP 2) info.plist 수정
- info.plist 를 연다.
- Main storyboard file based name 항목의 key/value 를 삭제한다.
STEP 3) 새로운 View Controller 생성
- new file > Cocoa Touch Class > UIViewController > xib 체크
STEP 4) AppDelegate.swift 수정
import UIKit
@UIApplicationMain
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 = UINavigationController(rootViewController: MainViewController())
window?.makeKeyAndVisible()
}
....
}
'Computer > Android&iOS' 카테고리의 다른 글
(iOS/swift4) UICollectionView 예제 (0) | 2018.11.22 |
---|---|
( Android ) 2018.11. Android OS 점유율 (0) | 2018.11.21 |
(iOS/swift) Type '' does not conform to protocol '' (0) | 2018.11.19 |
(iOS/swift) missing return in a function expected to return '' (0) | 2018.11.19 |
(Android) RecyclerView wrap_contents (0) | 2018.11.07 |
- Total
- Today
- Yesterday
- Phaser
- C언어
- git hub
- IOS
- Node
- nodejs
- 배열
- linux
- Kotlin
- node.js
- Asterisk
- mysql
- 손석희
- BBC 가쉽
- 서버
- 리눅스
- C
- php
- xcode
- GIT
- 깃헙
- Swift
- 뉴스룸
- 앵커브리핑
- Android
- CentOS
- 노드
- 스위프트
- 점유율
- 안드로이드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |