here is my button object
button
let loginRegisterButton:UIButton = { let button = UIButton(type: .system) button.backgroundColor = UIColor
Try this
button.addTarget(self, action:#selector(handleRegister()), for: .touchUpInside).
Just add parenthesis with name of method.
Also you can refer link : Value of type 'CustomButton' has no member 'touchDown'