I get a strange issue when using my app on iOS 8.1.1 and 8.1.2 (iPhone 6). Some components (UISwitch
and UISemgentedControl
) in my menu cells have disappeared.
I can't reproduce it on simulator, since I did not find iOS 8.1.1 sim on xcode 6.1 or 6.1.1 (GM seed), and it works well on iOS 8.1 (both simulator and device)
In my UITableView
I get many differents cells type, and I load them like this in tableview:CellForRow:AtIndexPath:
[[NSBundle mainBundle] loadNibNamed:@"SubMenuCellSwitch" owner:self options:nil];
[[NSBundle mainBundle] loadNibNamed:@"SubMenuCellSegment" owner:self options:nil];
I'm using Autolayout in the cells'xib, but I still get the same issue if I remove it.
Every subviews of my cells are visible (UIImageView
and UILabel
) except the switch and segmentedControl !
Does anyone get a similar issue on iOS 8.1.1 ? or have a possible answer ?