0

我有一个带有工具栏的导航栏控制器。左下角的工具栏上只有一个按钮:信息灯。当我将视图旋转为横向时,工具栏仍然存在,但按钮消失了。

我如何让它留下来。我在 IB 中检查了我的 struts 工具栏。它们被设置在工具栏的左下角。

我正在使用 4.0 的基本 SDK 在 iPod touch 上进行测试。

这是代码:

UIButton *info = [UIButton buttonWithType:UIButtonTypeInfoLight];
[info addTarget:self 
             action:@selector(infoTap:) 
   forControlEvents:UIControlEventTouchUpInside];
/** Allocate and initialize the information button on the leftside of the toolbar.
 */
UIBarButtonItem *infoItem = [[UIBarButtonItem alloc] initWithCustomView:info];
/** Use this to put space in before your info toolbar button.
   */
UIBarButtonItem *flexItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
/** Add buttons to the array.
   */
NSMutableArray *items = [NSMutableArray arrayWithObjects: infoItem, flexItem, nil];
/** Add array of buttons to toolbar.
   */
[self.toolbar setItems:items animated:NO];
/** Add the toolbar as a subview to the navigation controller.
   */
[self.navigationController.view addSubview:toolbar];

有什么建议么?

阿曼达

4

1 回答 1

0

您发布的代码对于您想要做的事情是正确的,因此问题在于支持代码。

我会检查几件事:封闭视图(self.navigationController.view)是否在旋转时调整大小?

self.navigationController.view 上的 struts 和 autoresizingmasks 是什么?

UIToolbar 上的 struts 和 autoresizingmasks 是什么?

(我不确定您的意思是:“我在 IB 中检查了我的 struts 工具栏。它们被设置为留在工具栏的左下角。”工具栏如何留在工具栏的左下角? )。

于 2012-06-23T01:17:19.513 回答