ios – UIToolbar不显示UIBarButtonItem

前端之家收集整理的这篇文章主要介绍了ios – UIToolbar不显示UIBarButtonItem前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用一个故事板,我有一个拆分视图,主人是一个UITableViewController.像iPad Mail应用程序一样,我想显示一个UIToolbar.

我无法通过故事板添加工具栏,但我设法以编程方式添加.我也可以在工具栏中添加一个UILabel,但是我找不到添加一个刷新按钮或者任何一种UIBarButtonItem的方法.

任何想法?

- (void)viewDidLoad {
  [super viewDidLoad];

  [self.navigationController setToolbarHidden:NO];

  UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(50.0f,0.0f,80.0f,40.0f)];
  label.text = @"last updated...";
  label.textAlignment = UITextAlignmentCenter;
  label.font = [UIFont systemFontOfSize:13.0];
  [self.navigationController.toolbar addSubview:label];

  UIBarButtonItem *item1 = [[UIBarButtonItem alloc] initWithTitle:@"Item" style:UIBarButtonItemStylePlain target:self action:@selector(action:)];
  UIBarButtonItem *item2 = [[UIBarButtonItem alloc] initWithTitle:@"Item1" style:UIBarButtonItemStyleBordered target:self action:@selector(action:)];

  NSArray *buttons = @[item1,item2,nil];
  [self.navigationController.toolbar setItems:buttons animated:NO];

解决方法

发现答案感谢苹果iOS论坛!

当您使用导航控制器的工具栏时,必须在视图控制器toolbarItems属性上设置工具栏按钮,而不是在实际工具栏上.

例如:

[self setToolbarItems:buttons animated:NO];
原文链接:https://www.f2er.com/iOS/330618.html

猜你在找的iOS相关文章