2010-01-16 3 views

Répondre

3

Définissez vos vues 'contentMode à UIViewContentModeRedraw.

0

Ma solution était de passer outre comme willAnimateRotationToInterfaceOrientation: Durée: si:

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration 
{ 
    [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationFade]; 
} 

de gros, cela ne fonctionne que dans la version 3.0 et vous auriez besoin de recharger toutes vos sections si vous aviez plus d'un.

Questions connexes