我正在尝试动态添加导航栏,但发生了一些奇怪的事情。
我的屏幕只是一个 UINavigation 和一个带有红色背景的视图:
这是我的Swift代码:
import UIKit
class ViewController: UIViewController {
@IBOutlet var navBar: UINavigationBar!
@IBOutlet var viewLongPress: UIView!
var viewLongPressInitialPosition: CGPoint!
var frameSize: CGSize {
get {
return self.view.frame.size
}
}
override func viewDidLoad() {
super.viewDidLoad()
navBar.frame.size.height = 64.0
viewLongPress.addGestureRecognizer(UILongPressGestureRecognizer(target: self, action: "viewLongPressAction:"))
viewLongPressInitialPosition = viewLongPress.frame.origin
}
func viewLongPressAction(sender: UILongPressGestureRecognizer) {
let locationInView = sender.locationInView(self.view)
if sender.state == .Began {
} else if sender.state == .Changed {
viewLongPress.frame.origin = CGPoint(x: locationInView.x - (viewLongPress.frame.width / 2), y: locationInView.y - (viewLongPress.frame.height / 2))
} else if sender.state == .Ended {
if locationInView.y <= navBar.frame.height {
let item = UINavigationItem()
item.rightBarButtonItems = [UIBarButtonItem(title: "Test", style: .Plain, target: nil, action: "noAction:")]
navBar.items?.append(item)
}
viewLongPress.frame.origin = viewLongPressInitialPosition
}
}
func noAction(sender: AnyObject) {
}
}
我正在尝试添加 UINavigationItem 以完成在导航栏上拖动视图。
但是当我添加按钮时,导航栏看起来像这样:
应添加按钮,如下所示:
我想我错过了什么,但我无法解决。
我尝试添加第二个按钮(leftBar),但标题消失了。
如果您已经有一个按钮,我该如何再添加一个按钮?
有人可以帮助我吗?
感谢您的回答。
答案 0 :(得分:2)
您正在替换可能不是您想要的整个UINavigationItem
。请尝试使用self.navigationItem.rightBarButtonItem = ...
。您甚至不必与实际的导航栏进行交互,只需要当前视图控制器的导航项(也包含其标题)。
编辑:看起来你的navBar已经有了导航项。如果您执行此分配会发生什么:self.navBar.items.first?.rightBarButtonItem = ...