There is an array of 119 elements. I load into the tableview. As a result, only 14 items are loaded. There are no errors.
dataArray = [NSMutableArray arrayWithArray:arr]; - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ return [dataArray count]; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static NSString*cellid=@"Cell"; UITableViewCell*cell=[tableView dequeueReusableCellWithIdentifier:cellid]; if(cell==Nil){ cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellid]; } cell.textLabel.text=[dataArray objectAtIndex:indexPath.row]; return cell; }