How can I addSubview to UIButton in Interface Builder

tinln picture tinln · Nov 14, 2012 · Viewed 10.4k times · Source

Like I said, I add a UIButton in Interface Builder, I want add a UILabel、UIImageView as the button's subviews, but I can't add any object on it in IB. IS anybody know how to do this? Thank you very much.

I can use code to achieve that, but I want achieve it in IB, so I can use it in any class I want.

Answer

Fogmeister picture Fogmeister · Nov 14, 2012

I have done this before by adding a UIView (instead of the UIButton) then add the UIButton and UILabel to the UIView. The tap from the UIButton still works and you have a label too. You can also add anything else like this.