- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 viewDidLoad
中有以下内容。它设置了自定义 rightBarButtonItem
(在自定义 UINavigationBar
中)。
let button = UIButton()
let attrs = [NSFontAttributeName: UIFont(name: "Montserrat-Light", size: 14)!, NSForegroundColorAttributeName: UIColor.black]
let title = NSAttributedString(string: "Sign In", attributes: attrs)
button.setAttributedTitle(title, for: .normal)
button.addTarget(self, action: #selector(self.pushVcLogin), for: .touchUpInside)
let parentView = UIView(frame: button.bounds)
parentView.addSubview(button)
button.sizeToFit()
parentView.bounds = CGRect(x: 0, y: 0, width: button.bounds.size.width, height: button.bounds.size.height)
self.navItem.rightBarButtonItem = UIBarButtonItem(customView: parentView)
自定义 UIBarButtonItem
看起来应该是这样,但它不可点击。
有什么想法吗?
最佳答案
首先,如果您的 View 层次结构具有 UINavigationController
其次,您可以使用 navigationItem 并在其上添加自定义 UIBarButtonItem。
我刚刚检查了以下代码,它有效。
let button = UIButton()
let attrs = [NSFontAttributeName: UIFont(name: "Montserrat-Light", size: 14)!, NSForegroundColorAttributeName: UIColor.black]
let title = NSAttributedString(string: "Sign In", attributes: attrs)
button.setAttributedTitle(title, for: .normal)
button.addTarget(self, action: #selector(self.pushVcLogin), for: .touchUpInside)
let parentView = UIView(frame: button.bounds)
parentView.addSubview(button)
button.sizeToFit()
parentView.bounds = CGRect(x: 0, y: 0, width: button.bounds.size.width, height: button.bounds.size.height)
self.navigationItem.rightBarButtonItem = UIBarButtonItem(customView: parentView)
这也是 navigationController 和 viewController 的 Storyboard图像。
关于ios - UIBarButtonItem(自定义 View :) -- not tappable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45344908/
我在 viewDidLoad 中有以下内容。它设置了自定义 rightBarButtonItem(在自定义 UINavigationBar 中)。 let button = UIButton(
我想每两秒调用一个函数。我尝试使用 setInterval(myFunction, 2000);它有效,但是: 页面中还有一些可点击的元素。 $('div.square').tappable(func
您可能会问自己“有条件地可点击”是什么意思: 我有一个 UITableView,里面有一些生成的单元格。细胞上有一些图像和标签。无论我在哪里点击单元格区域(在单元格本身、图像或标签上),它都会带我到
我有一个 Assets 代表一个按钮,下面有一个阴影。我只想让蓝色部分可点击。有没有简单的方法来做到这一点? 谢谢。 最佳答案 您可以像这样以编程方式添加阴影: button.layer.shadow
我是一名优秀的程序员,十分优秀!