'toolbar'에 해당되는 글 1건

  1. 2011.10.13 FlipView구현 및 Toolbar 넣기
- Flip View 구현 :
     http://cafe.naver.com/mcbugi.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=74279&  
    View controller 기반


- TableView에 Toolbar 넣기 

UIToolbar *toolBar = [[UIToolbar allocinitWithFrame:CGRectMake(0.0431.032049.0)]; 

toolBar.barStyle = UIBarStyleBlackTranslucent

[self.view insertSubview:toolBar atIndex : 1]; 

UIBarButtonItem *bt1 = [[UIBarButtonItem allocinitWithTitle:@"bt1" style:UIBarButtonItemStyleBordered target:selfaction:@selector(cmd:)];

toolBar.items = [NSArray arrayWithObjects:bt1, nil];




 
Posted by 꿈을펼쳐라
,