我正在努力将导航栏添加到 JSQMessagesViewController。是否可以在界面生成器中执行此操作,还是必须以编程方式创建导航栏?
当尝试使用 IB 执行此操作时,导航栏在运行时不可见,并且消息一直滚动到 iPhone 显示屏的顶部。我认为需要添加约束才能使其正常工作。我不确定如何或添加什么约束,因为在 IB 中除了我的导航栏之外没有其他任何东西。
对不起,如果这是一个基本问题,感谢您提供的任何指导!
更新:我仍然很好奇这是否可以通过 IB 完成。但是,我已经想出了如何以编程方式执行此操作。我将以下内容添加到 viewDidLoad()
// Create the navigation bar
let navigationBar = UINavigationBar(frame: CGRectMake(0, 0, self.view.frame.size.width, 64)) // Offset by 20 pixels vertically to take the status bar into account
navigationBar.backgroundColor = UIColor.whiteColor()
navigationBar.delegate = self;
// Create a navigation item with a title
let navigationItem = UINavigationItem()
navigationItem.title = contacts[i].firstName
// Create left and right button for navigation item
let leftButton = UIBarButtonItem(title: "Back", style: UIBarButtonItemStyle.Plain, target: self, action: "btn_clicked:")
let rightButton = UIBarButtonItem(title: "Details", style: UIBarButtonItemStyle.Plain, target: self, action: "details_clicked:")
// Create two buttons for the navigation item
navigationItem.leftBarButtonItem = leftButton
navigationItem.rightBarButtonItem = rightButton
// Assign the navigation item to the navigation bar
navigationBar.items = [navigationItem]
// Make the navigation bar a subview of the current view controller
self.view.addSubview(navigationBar)
这似乎完成了工作。让我知道是否有更好的方法来解决这个问题。