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
を作成するあなたに
UはUITabBarControllerのように意味しましたか?しかし、右側/左側に?? –
いいえ............. –