How can I make a UIBarButtonItem like this:
I can\'t find it in the SystemItem
Swift's version of @Jhaliya's answer for quick copy-paste:
let infoButton = UIButton(type: .InfoLight)
infoButton.addTarget(self, action: "InfoButtonClicked:", forControlEvents: .TouchUpInside)
let infoBarButtonItem = UIBarButtonItem(customView: infoButton)
navigationItem.rightBarButtonItem = infoBarButtonItem