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

如何在iOSSwift的顶部导航栏中添加“继续”按钮,第1张

概述( Xcode6,iOS8,iPhone, Swift) 我想在导航栏的右侧添加一个“继续”按钮. 如何实现这一目标?我一直在尝试使用UIBarButtonItem上的一些方法,但无法使其正常工作. 我迄今为止的最大努力是: var b = UIBarButtonItem(title: "Continue", style: UIBarButtonItemStyle, target: self, a ( 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 Plaincase borderedcase Done}

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

var b = UIbarbuttonItem(Title: "Continue",action: nil)

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

var b = UIbarbuttonItem(Title: "Continue",action: Selector("sayHello"))

编辑:代码中的错字

总结

以上是内存溢出为你收集整理的如何在iOS / Swift的顶部导航栏中添加“继续”按钮全部内容,希望文章能够帮你解决如何在iOS / Swift的顶部导航栏中添加“继续”按钮所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1100838.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存