如何在iOS / Swift的顶部导航栏中添加“继续”按钮

前端之家收集整理的这篇文章主要介绍了如何在iOS / Swift的顶部导航栏中添加“继续”按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
( Xcode6,iOS8,iPhone,Swift)

我想在导航栏的右侧添加一个“继续”按钮.

如何实现这一目标?我一直在尝试使用UIBarButtonItem上的一些方法,但无法使其正常工作.

我迄今为止的最大努力是:

var b = UIBarButtonItem(title: "Continue",style: UIBarButtonItemStyle,target: self,action: nil)
    self.navigationItem.rightBarButtonItem = b

但我在第一行遇到错误.它不喜欢“style”参数.我也试过了

var b = UIBarButtonItem(title: "Continue",style: UIBarButtonItemStylePlain,action: nil)

但没有运气.仍然停留在样式参数上.有任何想法吗? tyvm Keith:D

编辑:对于后代,以下行还包括一个动作设置:

var b = UIBarButtonItem(title: "Continue",style: .Plain,action:"sayHello")

参考:
How to set the action for a UIBarButtonItem in Swift

解决方法

enum UIBarButtonItemStyle : Int {
case Plain
case Bordered
case Done
}

所以你不应该写’UIBarButtonItemStyle’,而是使用’.Plain'(注意单词前面的点):

var b = UIBarButtonItem(title: "Continue",action: nil)

要向按钮添加实际操作,请使用以下(假设方法sayHello()存在):

var b = UIBarButtonItem(title: "Continue",action: Selector("sayHello"))

编辑:代码中的错字

原文链接:https://www.f2er.com/iOS/332114.html

猜你在找的iOS相关文章