UITableView commence à manquer

Iam ne sais pas si c'est la bonne question à se poser maintenant. Je suis en train de travailler avec Xcode 5 (version d'évaluation ) sur la vue de la table. La question maintenant est de savoir si ma table, la vue est sélectionné comme group que je vais avoir un écart entre la première cellule et le bord supérieur de la table.

Le code pour uitable vue délégué est ci-dessous

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 8;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *simpleTableIdentifier = @"SimpleTableItem";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    cell.textLabel.text = [NSString stringWithFormat:@"cell %d",indexPath.row];
    return cell;
}

Image ci-dessous lorsque je choisis group dans le xib

UITableView commence à manquer

Cependant, si je suis de commutation à plainla table est normal

UITableView commence à manquer

Toutes les pensées de cette situation. Je l'ai googlé mais il semble qu'il n'y a rien là-bas. Toute aide sont les bienvenus ici.

source d'informationauteur tranvutuan