swift – 如何在UIBarButtonItem上使用info按钮

如何在UIBarButtonItem上使用信息灯?

我不想使用自定义图像,因为结果不是很好.我想使用Apple“信息”按钮.
我正在使用Swift.

谢谢.

没有直接的方法来使用 UIBarButtonItem APIs创建这样的条形按钮.

您可以使用配置了.InfoLight UIButton的自定义视图,如建议的here

// Create the info button
let infoButton = UIButton(type: .infoLight)

// You will need to configure the target action for the button itself,not the bar button itemr
infoButton.addTarget(self,action: #selector(getInfoAction),for: .touchUpInside)

// Create a bar button item using the info button as its custom view
let infoBarButtonItem = UIBarButtonItem(customView: infoButton)

// Use it as required
navigationItem.rightBarButtonItem = infoBarButtonItem

如果您需要更多帮助,请随时发表评论.

相关文章

Swift 正式开源!Swift 团队很高兴宣布 Swift 开始开源新篇章。自从苹果发布 Swfit 编程语言,就成为了...
快,快,快!动动您的小手,分享给更多朋友! 苹果去年推出了全新的编程语言Swift,试图让iOS开发更简单...
开发者(KaiFaX) 面向开发者、程序员的专业平台! 和今年年初承诺的一样,苹果贴出了Swift语言的源码,...
本文由@Chun发表于Chun Tips :http://chun.tips/blog/2014/12/11/shi-yong-swift-gou-jian-zi-ding-yi...
本文由CocoaChina译者leon(社区ID)翻译 原文:THE RIGHT WAY TO WRITE A SINGLETON 在之前的帖子里聊过...
本文由CocoaChina译者leon(社区ID)翻译 原文:THE RIGHT WAY TO WRITE A SINGLETON 在之前的帖子里聊过...