아이폰개발/Tip & Tech
FlipView구현 및 Toolbar 넣기
꿈을펼쳐라
2011. 10. 13. 02:26
- Flip View 구현 :
http://cafe.naver.com/mcbugi.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=74279&
View controller 기반
- TableView에 Toolbar 넣기
http://cafe.naver.com/mcbugi.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=74279&
View controller 기반
- TableView에 Toolbar 넣기
UIToolbar *toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0.0, 431.0, 320, 49.0)];
toolBar.barStyle = UIBarStyleBlackTranslucent;
[self.view insertSubview:toolBar atIndex : 1];
UIBarButtonItem *bt1 = [[UIBarButtonItem alloc] initWithTitle:@"bt1" style:UIBarButtonItemStyleBordered target:selfaction:@selector(cmd:)];
toolBar.items = [NSArray arrayWithObjects:bt1, nil];