I\'ve successfully added some UIButtons to a custom tableFooterView. The problem is that the button events does not get called. Also, the image relative to the UIControlSta
I do not think UIImageView
was designed to work well as a container for other views, especially UIButtons
. For one, UIImageView
s, when created, have their userInteractionsEnabled property set to false
by default.
I would just create a simple UIView
as your footer view and then add both the UIButton
and the UIImageView
directly to it.