将 UI BarButtonSystemItem 图标添加到导航工具栏 (SWIFT)
Adding UIBarButtonSystemItem icons to Nav-Toolbar (SWIFT)
我一直在努力寻找一种将 UIBarButtonSystemItem 图标添加到工具栏的方法。我已经使用以下代码在我的 NavBar 上实现了它:
self.navigationItem.leftBarButtonItem = UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.Action, target: self, action: "shareMeme")
但是说到工具栏,我就一头雾水了。有什么想法吗?
尝试:
var items: Array<UIBarButtonItem> = []
items.append(UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.Action, target: self, action: "selector"))
self.setToolbarItems(items as [AnyObject], animated: true)
self.navigationController?.setToolbarHidden(false, animated: true)
我一直在努力寻找一种将 UIBarButtonSystemItem 图标添加到工具栏的方法。我已经使用以下代码在我的 NavBar 上实现了它:
self.navigationItem.leftBarButtonItem = UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.Action, target: self, action: "shareMeme")
但是说到工具栏,我就一头雾水了。有什么想法吗?
尝试:
var items: Array<UIBarButtonItem> = []
items.append(UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.Action, target: self, action: "selector"))
self.setToolbarItems(items as [AnyObject], animated: true)
self.navigationController?.setToolbarHidden(false, animated: true)