Array count Should be Show in table view
i want show my NSMutableArray Count in a UILabel ,,,,,,,开发者_如何学Go,,,
can any one help me
NSMutableArray * anArray = [[NSMutableArray alloc] init];
UILabel * aLabel = [[UILabel alloc] init];
aLabel.text = [NSString stringWithFormat:@"%d", [anArray count]];
精彩评论