键盘上方的工具栏未显示 - iOS 11

时间:2017-06-14 07:01:22

标签: ios objective-c iphone ios11

键盘上方的工具栏未显示在iOS 11.0上。它在< 11.0版本上运行良好。

这是我添加工具栏的代码。那么我应该添加什么来显示它 在iOS 11.0上:

UIToolbar* customToolBar = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 60)];     
        customToolBar.barStyle = UIBarStyleDefault;
        customToolBar.items = [NSArray arrayWithObjects:
              [[UIBarButtonItem alloc] initWithTitle:@"+ Contact" 
                                    style:UIBarButtonItemStylePlain 
                                    target:self 
                                    action:@selector(showPicker:)],
               [[UIBarButtonItem 
          alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace 
               target:nil 
               action:nil],
              [[UIBarButtonItem alloc] initWithTitle:@"- Contact" 
                                     style:UIBarButtonItemStylePlain 
                                    target:self 
                                    action:@selector(HidePicker:)],
                               nil];
        [customToolBar sizeToFit];
        self.textView.inputAccessoryView=customToolBar;

2 个答案:

答案 0 :(得分:9)

在iOS 11测试版中,在不使用默认键盘时显示工具栏存在问题(例如,datepicker,值选择器)。这可以通过将以下行添加到pickerView:pickerView.translatesAutoresizingMaskIntoConstraints = false

来解决

答案 1 :(得分:1)

以下代码对我有用,请尝试一下:

customToolBar.layoutIfNeeded() 

它看起来像是ios 11中的一个错误。