0

在我当前的项目中,我有一个基于导航控制器的应用程序。应用程序中的某些视图需要视图底部的工具栏。我正在使用以下代码以编程方式创建工具栏(摘自 table view controller 中的 viewDidLoad):

UIBarButtonItem *reloadButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self action:@selector(refreshList)];

[reloadButton setTitle:@"Refresh"];
[reloadButton setTintColor:[UIColor whiteColor]];

self.navigationController.toolbar.barStyle = UIBarStyleBlackTranslucent;
[self.navigationController.toolbar sizeToFit];
CGFloat toolbarHeight = [self.navigationController.toolbar frame].size.height;
[self.navigationController.toolbar setFrame:CGRectMake(CGRectGetMinX(self.view.bounds),
                                                       438,
                                                       CGRectGetWidth(self.view.bounds),
                                                       toolbarHeight)];
NSArray *toolbarItems = [[NSArray alloc] initWithObjects:reloadButton, nil];
[self setToolbarItems:toolbarItems];
[self.navigationController setToolbarHidden:NO];

这在大多数观点中运作良好。但是,我现在使用相同的代码将其合并到另一个视图中。在该控制器中,工具栏出现在视图底部上方约一英寸处——它不像在其他视图控制器中那样对齐到视图底部。导航到问题视图后,其他视图中的其他工具栏开始表现出相同的行为。这只发生在模拟器中,而不是我的物理设备上。但是,我目前只有 iPhone 4 作为我的物理设备。这是模拟器中的错误还是某个问题的迹象?谢谢!

4

1 回答 1

1

您将 y 位置设置为硬编码值 438。这将导致它不会出现在较高的 iPhone 5 的屏幕底部)。您还应该使用以下方法计算 y 位置:

CGRectGetMaxY(self.view.bounds) - toolbarHeight

这将导致:

[self.navigationController.toolbar setFrame:CGRectMake(CGRectGetMinX(self.view.bounds),
                                                   CGRectGetMaxY(self.view.bounds) - toolbarHeight,
                                                   CGRectGetWidth(self.view.bounds),
                                                   toolbarHeight)];

它也可能与导航栏和状态栏的存在有关

于 2013-11-12T22:18:24.640 回答