Reputation: 835
My buttons often do not notice the touch. Some causes?
let button = UIButton(type: .system)
button.translatesAutoresizingMaskIntoConstraints = false
Upvotes: 0
Views: 376
Reputation: 59
Set the translatesAutoresizingMaskIntoConstraints property of the button to be true: button.translatesAutoresizingMaskIntoConstraints = true
Upvotes: 1