How to programmatically set action for barButtonItem in swift 3?

IosSwiftSelectorSwift3Uibarbuttonitem

Ios Problem Overview


Here is what I used previously,

var barButtonItem = UIBarButtonItem(image: backImgs, style: UIBarButtonItemStyle.plain, target: self, action: Selector("menuButtonTapped:"))

But there is some syntax changes for Swift 3.

Ios Solutions


Solution 1 - Ios

ex:-

navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Add", style: .plain, target: self, action: #selector(addTapped))

Solution 2 - Ios

Summarize the mostly used method in Swift 3 for adding action to a barButton.

  1. Barbutton with text

     navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Add", style: .plain, target: self, action: #selector(addTapped))
    
  2. BarButton with your own image

     navigationItem.rightBarButtonItem = UIBarButtonItem(image: UIImage(named:"add"), style: .plain, target: self, action: #selector(addTapped))
    
  3. BarButton with system image

     navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .add, target: self, action: #selector(addTapped))
    

Solution 3 - Ios

If anyone is using customView:

barButtonItem.customView?.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(onBarButtonItemClicked)))

Solution 4 - Ios

You just need to change your selector syntax as of from Swift 3 you need to specify the first parameter name of method in your function call so change your selector like this.

#selector(menuButtonTapped(sender:))

And your method should be like this.

func menuButtonTapped(sender: UIBarButtonItem) {

}

Solution 5 - Ios

One line of code on Swift 3 for iOS 10.1:

navigationController?.navigationBar.topItem?.rightBarButtonItem = UIBarButtonItem(title: "Add", style: .plain, target: self, action: nil)

Solution 6 - Ios

let barButtonItem = UIBarButtonItem(image: UIImage(named: "backImgs"),
                                            style: .plain,
                                            target: self,
                                            action: #selector(menuButtonTapped))

// Adding button to navigation bar (rightBarButtonItem or leftBarButtonItem)
self.navigationItem.rightBarButtonItem = barButtonItem

 // Private action
@objc fileprivate func menuButtonTapped() { // body method here }

Solution 7 - Ios

If someone is looking for a way to set the action on an existing button (Swift 5):

if let leftBarButtonItem = navigationItem.leftBarButtonItem {
    leftBarButtonItem.target = self
    leftBarButtonItem.action = #selector(onBack(_:))
}


@IBAction func onBack(_ sender: AnyObject) {
    _ = navigationController?.popViewController(animated: true)
}

Solution 8 - Ios

create an extension for barbutton item.

 extension UINavigationItem {
    func addSettingButtonOnRight(){
       let button = UIButton(type: .Custom)
       button.setTitle("setting", forState: .Normal)
       button.titleLabel?.font = UIFont.systemFontOfSize(15.0)
       button.layer.cornerRadius = 5
       button.backgroundColor = UIColor.grayColor()
       button.frame = CGRect(x: 0, y: 0, width: 100, height: 25)
       button.addTarget(self, action: #selector(gotSettingPage), forControlEvents: UIControlEvents.TouchUpInside)
       let barButton = UIBarButtonItem(customView: button)

       self.rightBarButtonItem = barButton
   }

   func gotSettingPage(){

   }
 }

And call it from viewDidLoad()

 self.navigationItem.addSettingButtonOnRight()

Solution 9 - Ios

In Swift 3, you can add UIBarButtonItem like that,

let addButton = UIBarButtonItem(image:UIImage(named:"your_icon_name"), style:.plain, target:self, action:#selector(YourControllerName.buttonAction(_:)))
addButton.tintColor = UIColor.white
self.navigationItem.rightBarButtonItem = addButton

And handle button action like that,

func buttonAction(_ sender: UIBarButtonItem) {
    
}

Hope it helps.

Solution 10 - Ios

for Swift 4 add in viewDidLoad:

navigationItem.rightBarButtonItem = UIBarButtonItem(
    barButtonSystemItem: UIBarButtonSystemItem.add, 
    target: self, 
    action: #selector(addTransaction)
)

Solution 11 - Ios

In Swift 5

//For righter button item
let rightBtn = UIBarButtonItem(image: UIImage(named: "rightmenu"), style: .plain, target: self, action: #selector(onClickMethod))//Change your function name and image name here
self.navigationItem.rightBarButtonItem = rightBtn
//self.navigationItem.rightBarButtonItem = [rightBtn, anotherBtn] //If you want to add more buttons add like this
    
//For left bar button item
let leftBtn = UIBarButtonItem(image: UIImage(named: "rightmenu"), style: .plain, target: self, action: #selector(onClickMethod)) //Change your function name and image name here
self.navigationItem.leftItemsSupplementBackButton = true
self.navigationItem.leftBarButtonItem = leftBtn
//self.navigationItem.leftBarButtonItems = [leftBtn, anotherBtn] //If you want to add more buttons add like this

//This is your function name
@objc func onClickMethod() {
    print("Left bar button item")
}

Solution 12 - Ios

Make a UIBarButtonItem:

let rightButton: UIBarButtonItem = UIBarButtonItem(title: "Done", style: UIBarButtonItemStyle.done, target: self, action: #selector(LocationViewController.doneButtonClicked(_:)))

Add to NavigationItem:

self.navigationItem.rightBarButtonItem = rightButton

Associated function:

func doneButtonClicked(_ button:UIBarButtonItem!){    
    print("Done clicked")    
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBhanupriyaView Question on Stackoverflow
Solution 1 - IosTony VincentView Answer on Stackoverflow
Solution 2 - Iosflame3View Answer on Stackoverflow
Solution 3 - IosOnuray SahinView Answer on Stackoverflow
Solution 4 - IosNirav DView Answer on Stackoverflow
Solution 5 - IosMarco Aurelio AmericoView Answer on Stackoverflow
Solution 6 - IosMihail SalariView Answer on Stackoverflow
Solution 7 - IosergunkocakView Answer on Stackoverflow
Solution 8 - IosTanvir NayemView Answer on Stackoverflow
Solution 9 - IosRiajur RahmanView Answer on Stackoverflow
Solution 10 - Iospankaj nigamView Answer on Stackoverflow
Solution 11 - IosNareshView Answer on Stackoverflow
Solution 12 - IosAlvin GeorgeView Answer on Stackoverflow