here is my button object
button
let loginRegisterButton:UIButton = { let button = UIButton(type: .system) button.backgroundColor = UIColor
Try this with Swift 3
button.addTarget(self, action:#selector(ClassName.handleRegister(sender:)), for: .touchUpInside)
Good luck!