navigationItemについて

1071 ワード

UITNavigationConttrlerはよく使われるコンテナ類です.UICNavigation barでUICNAvigation Itemを使用します.UICNavigation itemにはleftbarItem、ライトバItem、backbarItemがあります.その中でカスタムBarItemが必要な場合は、backBar Itemを使用しないでください.
    UButton*backButton=[UButton button WithType:101]    [backButton addTarget:self action:@selector(back)forControlEvents:UniControl EventTouchUpInside]    【backButton setTitle:cancel Text forState:UICControl StateNormal】         UBarButtonitem*backItem=[[UBarButton Item alloc]initWithCutomView:backButton]autrelease]    self.navigationItem.left BarButtonitem=backItem;
バックバーItemを隠す必要があれば、プロパティを設定できます. self.navigationItem.hidesBackbutton=YES; 
titleのスタイルを設定:
NSDictionary *dict = [NSDictionary dictionaryWithObject:[UIColor yellowColor] forKey:UITextAttributeTextColor];
childOne.navigationController.navigationBar.titleTextAttributes = dict;


  :http://www.cnblogs.com/martin1009/archive/2012/05/30/2526392.html