gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 06:21:23 28 4
gpt4 key购买 nike

键盘上方的工具栏在 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;

最佳答案

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

关于ios - 键盘上方的工具栏未显示在 -- iOS 11 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44537689/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com