我有两个UIButton
按钮。我已经在我的xib类型中初始化了按钮,在我的程序之后添加触摸我想要更改按钮的类型:
configImage1=[UIButton buttonWithType:UIButtonTypeDetailDisclosure] ; //doesn't Work !
configImage2=[UIButton buttonWithType:UIButtonTypeDetailDisclosure]; //doesn't Work !
答案 0 :(得分:2)
创建按钮后,无法更改按钮的类型。
答案 1 :(得分:1)
UIButton 具有以下属性,但它是只读的,因此一旦创建按钮类型就无法更改,
@property(nonatomic, readonly) UIButtonType buttonType
如果您想要更改按钮类型
,请尝试再次创建新的UIButton