tags:

views:

104

answers:

1

Hello all,

I have a UIButton array.

UIButton *btn[12];

I want to set property for this btn.

How to do this. I tried

@property(nonatomic, retain) UIButton *btn;

with @synthesize btn;

but it doesn works.

A: 

Use NSArray/NSMutableArray instead of primitive arrays, youll have a much easier time

Daniel