2012-05-09 8 views
2

UINavigationControllerに汎用右/左UIBarButtonItemを追加するにはどうすればよいですか?私はその後、ベースのUIViewControllerUINavigationControllerのユニバーサル右UIBarButton

@interface BaseController : UIViewController 
{ 

} 
@end 


@implementation BaseController 
- (id)init 
{ 
    //set the universal barbuttonitem 
    self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithCustomView:yourView] autorelease]; 
} 
@end 

を作成するあなたに

+0

UはUITabBarControllerのように意味しましたか?しかし、右側/左側に?? –

+0

いいえ............. –

答えて

2

ありがとうございすべてUIViewController に同じ左と右のナビゲーションバーボタンとナビゲーションベースのアプリケーションを作成しようとしていますあなたのViewControllerが

BaseController

から拡張する必要があり、すべての完了しました

0
You can add the rightbarButtonItem in this way :- 

UIBarButtonItem *btnName= [[[UIBarButtonItem alloc initWithTitle:@"btnTitle" style:UIBarButtonItemStyleBordered target:self action:@selector(btnAction)]autorelease];   
self.navigationItem.rightBarButtonItem = btnName; 
関連する問題