InputAccessoryView的子视图工具栏按钮不起作用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了InputAccessoryView的子视图工具栏按钮不起作用相关的知识,希望对你有一定的参考价值。
我尝试向Inputaccessoryview添加两个不同的工具栏。但是InputAccessoryView的子视图工具栏按钮不起作用。
我试图创建2个单独的uitoolbar并添加其中一个作为inputaccessoryview。然后我添加了第二个工具栏作为子视图。它看起来很好,但按钮不工作,它只是在那里看。
有我的代码
let entryToolbar = UIToolbar(frame:CGRect(x: 0, y: -50, width: UIScreen.main.bounds.width, height: 50))
entryToolbar.barStyle = Theme.barStyle!
entryToolbar.tintColor = Theme.userColor
let sendToolbar = UIToolbar(frame:CGRect(x: 0, y: -0, width: UIScreen.main.bounds.width, height: 50))
sendToolbar.barStyle = Theme.barStyle!
sendToolbar.tintColor = Theme.userColor
sendToolbar.items = [
UIBarButtonItem(title: "gönder", style: .plain, target: self, action: #selector(gonder)),
UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: self, action: nil),
UIBarButtonItem(title: "vazgeç", style: .plain, target: self, action: #selector(vazgec))]
entryToolbar.items = [
UIBarButtonItem(title: "(bkz:)", style: .plain, target: self, action: #selector(bkz)),
UIBarButtonItem(title: "hede", style: .plain, target: self, action: #selector(hede)),
UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: self, action: nil),
UIBarButtonItem(title: "*", style: .plain, target: self, action: #selector(gizlihede)),
UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: self, action: nil),
UIBarButtonItem(title: "-spoiler-", style: .plain, target: self, action: #selector(spoiler)),
UIBarButtonItem(title: "http://", style: .plain, target: self, action: #selector(link))]
sendToolbar.sizeToFit()
sendToolbar.addSubview(entryToolbar)
entryGir.inputAccessoryView = sendToolbar
如何添加多工具栏作为inputaccessoryview,它如何工作这个按钮?
有一个viewcontroller的视图。 https://i.imgur.com/0Uqo9fL.png
答案
您无法将任何子视图添加到UIToolbar
。要使工具栏与提供的图像一样,您需要做的是:创建扩展UIView
的自定义类,通过代码配置自定义UIView
UI或从NIB
加载它,并在该自定义类中编写按钮和其他UI元素的所有控制逻辑实现。然后使用自定义UIView
作为你的inputAccessoryView
。
You can get some more information of where to begin with custom
inputAccessoryView
implementation here.
以上是关于InputAccessoryView的子视图工具栏按钮不起作用的主要内容,如果未能解决你的问题,请参考以下文章
从 InputAccessoryView 上的按钮更改 uidatepicker 的值
在解除inputAccessoryView设置为toolbarItems的键盘后,toolbarItems消失
inputAccessoryView 必须是最顶层的视图吗?