How can I addSubview to UIButton in Interface Builder
interface-builder, ios, subview, uibutton, xcode
Solution
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.
Problem
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.