I guaranteed that the autosave mask of my cell allows a flexible width, but when the device rotates, the cells do not change.
I also checked the resizing of the table, the problem is directly related to the cells.
This is the code I use to create cells:
if (cell == nil) {
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"MetaTableViewCell" owner:self options:nil];
cell = [topLevelObjects objectAtIndex:0];
}
Can anyone think what might be wrong?
Are cells created using IB never change?
source
share