gpt4 book ai didi

ios - (底部)工具栏导航在升级到 Xcode 9.0.1(& Swift 3 到 4)后不再响应

转载 作者:行者123 更新时间:2023-11-28 15:12:47 31 4
gpt4 key购买 nike

下面是 WKWebView 的两个描述,显示了戏剧第 2 幕第 1 场中的文本。右边的描述是在点击手势召唤之后,在顶部,状态栏和导航栏(其中包括指向目录和文本大小控件的后退箭头),在底部,带有箭头的工具栏, 一个显示上一个场景(第一幕,场景 3),一个显示下一个场景(第二幕,场景 2)。

Two depictions of a WKWebView displaying text from a play. The right depiction is after a tap gesture summons a status bar and a navigation bar to the top and a toolbar to the bottom

显然一切正常。但是在我最近升级到 Xcode 9.0.1(以及从 Swift 3 到 Swift 4)之后,(底部)工具栏中的导航系统在我运行 iOS 11.0.3 的 iPhone 6 中不再起作用(尽管在模拟器中一切正常( iPhone 6/iOS 11.0)) 现在的响应就像是在远离(底部)工具栏的 View 中间进行了点击手势,而在(底部)工具栏正确地对除左侧以外的任何触摸没有响应之前-指向和右指三角形来改变场景。状态栏和导航栏仍然像以前一样正常运行。

我以编程方式创建了(底部)工具栏,并认为我必须将它放在 WKWebView 前面才能让它工作。这是我试图解决的问题:

self.view.bringSubview(toFront: toolbar!)

但这并没有奏效。我试过:

toolbar!.layer.zPosition = 1

但这也没有用。有人提出问题可能与 iOS 11 中的“安全区域”有关,但我不确定如何解决。非常感谢您的帮助。

这是创建(底部)工具栏的函数:

    // Create (bottom) toolbar and items (buttons and text).
func createToolbar() {

let frame = CGRect(x: 0, y: UIScreen.main.bounds.size.height-44, width: UIScreen.main.bounds.size.width, height: 44)
toolbar = UIToolbar(frame: frame)
toolbar?.sizeToFit()
toolbar?.isHidden = true
triangleLeftButton = UIBarButtonItem(image: UIImage(named: "triangleLeft_15x20"), style: .plain, target: self, action:#selector(showPrevious))
triangleLeftText = UIBarButtonItem(title: "\(String(describing: "previous"))", style: .plain, target: nil, action: nil)
let flexibleSpacer = UIBarButtonItem(barButtonSystemItem:.flexibleSpace , target: self, action: nil)
triangleRightText = UIBarButtonItem(title: "\(String(describing: "next"))", style: .plain, target: nil, action: nil)
triangleRightButton = UIBarButtonItem(image: UIImage(named: "triangleRight_15x20"), style: .plain, target: self, action:#selector(showNext))

if (triangleLeftText?.isEqual(""))! {
triangleLeftButton?.isEnabled = false
} else if (triangleRightText?.isEqual(""))! {
triangleRightButton?.isEnabled = false
}

var items = [UIBarButtonItem]()
items.append(triangleLeftButton!)
items.append(triangleLeftText!)
items.append(flexibleSpacer)
items.append(triangleRightText!)
items.append(triangleRightButton!)
toolbar?.items = items
self.view.addSubview(toolbar!)

// self.view.bringSubview(toFront: toolbar!)

// toolbar!.layer.zPosition = 1

// Set colors for toolbar items and for toolbar:
toolbar?.tintColor = UIColor(red: 0.5, green: 0.0, blue: 1.0, alpha: 1.0) //purple for toolbar items
toolbar?.barTintColor = UIColor.white //white for toolbar color

}

最佳答案

我遇到了同样的问题。您可以将按钮添加为 customview 并改用按钮操作。

let button = UIButton()
button.addtarget blablabla
uibarbuttonitem(customview: button)

希望这对您有所帮助。

关于ios - (底部)工具栏导航在升级到 Xcode 9.0.1(& Swift 3 到 4)后不再响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47371737/

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