- 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];
'아이폰개발 > Tip & Tech' 카테고리의 다른 글
mainWindow.xib 사용하지 않고 어플 개발하기 (0) | 2011.12.07 |
---|---|
window와 _window의 차이 (0) | 2011.10.13 |
NS Collection (0) | 2011.08.21 |
[아이폰 시뮬레이터] 물리적 파일 위치 (0) | 2011.08.15 |
Mac 단축키 정리 (0) | 2011.07.30 |