0

在我的应用程序中,我有一个带有 3 个按钮的 uinavigationbar,但我用于 ios5 的代码似乎不再适用于 ios6。您可以在我的自定义视图下方看到一个颜色错误的矩形,右侧有两个按钮。

这是我使用的代码,我在stackoverflow的某个地方找到了它:

UIToolbar *tools = [[[UIToolbar alloc]
                     initWithFrame:CGRectMake(0.0f, 0.0f, 110.0f, 44.01f)] autorelease]; // 44.01 shifts it up 1px for some reason
tools.clearsContextBeforeDrawing = NO;
tools.clipsToBounds = NO;
tools.translucent = self.headerbar.translucent;
tools.barStyle = self.headerbar.barStyle;  
tools.backgroundColor = self.headerbar.backgroundColor;
tools.tintColor = self.headerbar.tintColor;

NSMutableArray *buttons = [[NSMutableArray alloc] initWithCapacity:3];

// Create a standard refresh button.
UIBarButtonItem *bi = [[UIBarButtonItem alloc] initWithTitle:@"heute" style:UIBarButtonItemStylePlain target:self action:@selector(showThisWeek)];
bi.style = UIBarButtonItemStyleBordered;
bi.width = 0;
[buttons addObject:bi];
//[bi release];

// Create a spacer.
bi = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:@selector(showThisWeek)];
[buttons addObject:bi];
//[bi release];

// Add profile button.
bi = [[UIBarButtonItem alloc] initWithTitle:@"vor" style:UIBarButtonItemStylePlain target:self action:@selector(showNext)];
bi.style = UIBarButtonItemStyleBordered;
[buttons addObject:bi];
//[bi release];

// Add buttons to toolbar and toolbar to nav bar.
[tools setItems:buttons animated:NO];
[buttons release];
UIBarButtonItem *twoButtons = [[UIBarButtonItem alloc] initWithCustomView:tools];
//[tools release];
header.rightBarButtonItem = twoButtons;
[header.leftBarButtonItem setAction:@selector(showPrevious)];

有人可以提示我一个更优雅的解决方案,在 ios5 和 ios6 上都可以正常工作吗?

欢呼卢卡斯

4

2 回答 2

1

你试过 leftBarButtonItems 和 rightBarButtonItems 吗?您可以使用它在左侧和右侧导航栏中添加按钮数组。

如果您使用它,则不需要 UIToolbar 及其子视图。

于 2012-12-09T17:15:20.747 回答
0

你试过 bar.style = -1 吗?

于 2012-10-22T12:31:57.563 回答