인터페이스 빌더를 사용하지 않고(not using Interface Builder) 코드만(only code)으로 UINavigationController와 UITabBarController 사용하기. // UITabBarController 초기화 UITabBarController *tabBarController = [[UITabBarController alloc] init]; tabBarController.customizableViewControllers = nil; // 3개의 다른 UIViewController 생성 // 3개의 뷰는 UINavigationController를 사용합니다. UIViewController *View1 = [[UIViewController alloc] init]; UINavigationController *tab1Controller = [[UINavigationController alloc] initWithRootViewController:View1]; tab1Cont.. 더보기 이전 1 ··· 17 18 19 20 21 22 23 ··· 176 다음