I declared NSArray in my class
NSArray *labelsArray;
I made it a property
@property (nonatomic,retain) IBOutletCollection(UILabel) NSArray *labelsArray;
I connected it to four UILabels in IB. I allocated the array. When i do this
NSLog(@"labelsArray.count %i",[labelsArray count]);
It tells me that labelsArray's count is 0. What should i do to actually add those labels to the array?