方法1.UIButton *button ?= ?[[UIButton alloc] initWithFrame:frame];
方法2.UIButton *button = [UIButton buttonWithType:<#(UIButtonType)#>];
一般采取方法2 的方式對(duì) button 進(jìn)行初始化.
原因: button 的buttonType 屬性為只讀模式,僅允許在初始化的時(shí)候賦值, 默認(rèn)為UIButtonTypeCustom(方法1 無(wú)法定義buttonType ;方法2 可以定義buttonType)