1. 스토리보드 이름 찾기
[ProjectName]-Info.plist 파일에서 확인할 수 있다.
iPhone 은 "Main storyboard file base name", iPad 는 "Main storyboard file base name (iPad)" 에서 확인할 수 있다.
2. 기기에 맞는 스토리보드 이름 가져오기
NSString *storyboardName = (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad? @"MainStoryboard_iPad": @"MainStoryboard_iPhone");
3. 스토리보드 찾기
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:storyboardName bundle:nil];
'Mobile > iOS' 카테고리의 다른 글
[iOS] CFOptionFlags (0) | 2012.02.21 |
---|---|
[iOS] Storyboard 사용시 ViewController 의 initWithNibName 대응법 (0) | 2012.02.20 |
[iOS] 함수 포인터를 이용하여 핸들러 만들기 (0) | 2012.02.20 |
[iOS] iOS Application Life-cycle (0) | 2012.02.17 |
[iOS] boolean type (0) | 2012.02.17 |