我有一个带有工具栏的导航栏控制器。左下角的工具栏上只有一个按钮:信息灯。当我将视图旋转为横向时,工具栏仍然存在,但按钮消失了。
我如何让它留下来。我在 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];
有什么建议么?
阿曼达