问题类型UIButton

时间:2011-04-05 10:12:06

标签: iphone objective-c

我有两个UIButton按钮。我已经在我的xib类型中初始化了按钮,在我的程序之后添加触摸我想要更改按钮的类型:

configImage1=[UIButton buttonWithType:UIButtonTypeDetailDisclosure] ; //doesn't Work !
configImage2=[UIButton buttonWithType:UIButtonTypeDetailDisclosure]; //doesn't Work !

2 个答案:

答案 0 :(得分:2)

创建按钮后,无法更改按钮的类型。

答案 1 :(得分:1)

UIButton 具有以下属性,但它是只读的,因此一旦创建按钮类型就无法更改,

@property(nonatomic, readonly) UIButtonType buttonType

如果您想要更改按钮类型

,请尝试再次创建新的UIButton