Xcode 5 까지는 프로젝트를 생성할때 Empty Application template 을 선택해서 스토리보드나 xib 파일이 없는 깨끗한 프로젝트를 생성.
(내가 가장 선호하던 방법.)
Xcode 6 부터는 Empty 하나만 남았는데 이걸로 프로젝트를 생성하면 정말 아무것도 없는 프로젝트가 생성된다.
이렇게 하지 말고,
1. Single View Application 프로젝트를 선택후 생성.
2. Main.storyboard, launchscreen.xib 파일 삭제.
3. SupportingFiles > Info.plist 파일을 열어서
- Main storyboard file base name 에서 Main 스토리보드 이름 제거.
- Launch screen interface file base name 에서 파일 이름 제거.
4. AppDelegate.m 파일의 didFinishLauchingWithOptions 메소드 안에
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
|
위 내용을 추가한다.
'Development > iOS' 카테고리의 다른 글
Xcode 에서 디바이스 테스트시에 SDK 오류 발생. (0) | 2013.02.27 |
---|---|
Xcode 에 디바이스 연결해서 테스트 오류. (0) | 2013.02.27 |
protocol 과 delegate 기본 사용법. (1) | 2012.09.13 |
Xcode 4.4 템플릿 프로젝트에 사라진 예전 템플릿 추가하기. (1) | 2012.08.18 |