Reputation: 14571
Is it possible for a UIButton
to have a highlight image that is larger than the UIButton's
frame
(I want to keep UIButton's
frame
so that it's the size of the UIControlStateNormal
image, not the UIControlStateHighlight
image).
Upvotes: 0
Views: 41
Reputation: 14040
Yes, that is possible:
button.imageView?.contentMode = .center
button.imageView?.clipsToBounds = false
Upvotes: 1