2
我有一個UIButton
數組。如何在iPhone中擁有一個數組的屬性
UIButton *btn[12];
我想爲此btn設置屬性。
如何做到這一點。我試圖
@property(nonatomic, retain) UIButton *btn;
與
@synthesize btn;
,但它不工作。
我有一個UIButton
數組。如何在iPhone中擁有一個數組的屬性
UIButton *btn[12];
我想爲此btn設置屬性。
如何做到這一點。我試圖
@property(nonatomic, retain) UIButton *btn;
與
@synthesize btn;
,但它不工作。
使用NSArray/NSMutableArray代替原始數組,你會有一個更容易的時間