How to add / use default icons to navigation bar
问题 I want to use some of default iOS icons i.e. in navigation bar. Basically I don't know how to call image of that item (directly from native library - I know how to download it and place as custom image:)): var myButton:UIButton = UIButton.buttonWithType(UIButtonType.Custom) as! UIButton myButton.addTarget(self, action: "reload", forControlEvents: UIControlEvents.TouchUpInside) myButton.setImage(???, forState: <#UIControlState#>) 回答1: You can use UIBarButtonSystemItem this way: let button =