- (NSInteger)numberOfSectionsInTableView

UITableVie w *)tableView {
// Return the number of sections.
return 2;
}
- (NSInteger)tableView

UITableView *)tableView numberOfRowsInSection

NSInteger)section {
if (section == 0) return [sentData count]-1;
if ( section == 1 ) return[tableTestData count];
}
I have 2 Section and 2 Array Data.For the first section i am not able to get the actual number of Row in section from the first Array.I have to -1 the Array to list the Row in first section.Why is that?