I am trying to add target into button this way:
btnAll.addTarget(self, action: #selector(buttonTapped(_:)), for: .touchUpInside)
But it is giving me an error:
Use of unresolved identifier 'buttonTapped'
But I declared function like:
func buttonTapped(sender: UIButton) {
print("All Tapped")
}
Can anybody tell me what is the correct way to do this in swift 3.