- (NSInteger)numberOfViews {
for (int i = 0; i<[masterArray count]; i++) {
NSMutableArray *test = masterArray[i];
return test.count;
}
}
in this method loop is not increment, i got zero every time when i using this loop in outside of this scope this is proper work.
plz help me.