How can I addSubview to UIButton in Interface Builder
问题 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. 回答1: 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