2011년 5월 19일 목요일

아이폰 Controller

UINavigation Controller
• Navigation Conroller  - (id)initWithRootViewController:(UIViewController *)viewController;
• View controller  (Push) - (void)pushViewController:(UIViewController *)viewController
animated:(BOOL)animated;
View controller  (Pop) - (UIViewController *)popViewControllerAnimated:(BOOL)animated;
View Controller  (iPhone OS 3.0) - (void)setViewControllers:(NSArray *)viewControllers animated:(BOOL)animated;


UITabBarController
tabBarController = [[UITabBarController alloc] init];
View Controller  tabBarController.viewControllers = myViewControllers;
[window addSubview:tabBarController.view];
UITabBarItem *item = [[UITabBarItem alloc] initWithTitle:@“Playlists”
image:[UIImage imageNamed:@“music.png”] tag:0]; self.tabBarItem = item;
[item release];



댓글 없음:

댓글 쓰기

참고: 블로그의 회원만 댓글을 작성할 수 있습니다.