1

我的 TabBarView 中有一个导航栏。我想要一个 rightBarButtonItem 和我的导航栏上的标题。为什么会这样?我的代码在 viewDidLoad 方法中。为什么我的标题显示为左键项?然后当我点击它时,它就像在移动一个视图,然后我的右栏按钮项目消失了,标题是正确的。

UINavigationBar *myNavBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320,40)];
myNavBar.barStyle = UIBarStyleBlackOpaque;

[self.view addSubview:myNavBar];

//Creates the title.
UINavigationItem *title = [[UINavigationItem alloc] initWithTitle:@"My Title"];

[myNavBar pushNavigationItem:title animated:NO];

//Creates the button.
UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self
action:@selector(showMail:)];

UINavigationItem *navItem = [[UINavigationItem alloc] initWithTitle:nil];
navItem.rightBarButtonItem = button;

// add the UINavigationItem to the navigation bar
[myNavBar pushNavigationItem:navItem animated:NO];
4

2 回答 2

4

UINavigationItem 包含标题和栏按钮项。您正在创建多个导航项,而您应该只分配单个 UINavigationItem 的属性。

查看头文件,您会看到它包含您需要的所有内容:

NS_CLASS_AVAILABLE_IOS(2_0) @interface UINavigationItem : NSObject <NSCoding> {
 @private
    NSString        *_title;
    NSString        *_backButtonTitle;
    UIBarButtonItem *_backBarButtonItem;
    NSString        *_prompt;
    NSInteger        _tag;
    id               _context;
    UINavigationBar *_navigationBar;
    UIView          *_defaultTitleView;
    UIView          *_titleView;
    UIView          *_backButtonView;
    NSArray         *_leftBarButtonItems;
    NSArray         *_rightBarButtonItems;
    NSArray         *_customLeftViews;
    NSArray         *_customRightViews;
    BOOL             _hidesBackButton;
    BOOL             _leftItemsSupplementBackButton;
    UIImageView     *_frozenTitleView;
}

只需分配它的一个实例。您不应该分配多个 UINavigationItems。

于 2013-05-06T20:33:37.607 回答
0

您正在创建多个导航按钮。您应该将所有这些属性设置为单个按钮。如果要给栏设置标题,可以设置为 self.title = @"title";

也可以尝试设置navigationbar.titleview。

于 2013-05-06T20:35:20.257 回答