UIButton 的初始化

2017-06-16  本文已影响0人  _DN

方法1.UIButton *button  =  [[UIButton alloc] initWithFrame:frame];

方法2.UIButton *button = [UIButton buttonWithType:<#(UIButtonType)#>];

一般采取方法2 的方式对 button 进行初始化.

原因: button 的buttonType 属性为只读模式,仅允许在初始化的时候赋值, 默认为UIButtonTypeCustom(方法1 无法定义buttonType ;方法2 可以定义buttonType)

上一篇下一篇

猜你喜欢

热点阅读