In this UITable methode I get the number of sections in my table:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [[self.myMutableDictonary allKeys] count];
}
Everything works fine on 64 Bit devices and simulator. But on older devices/simulators my table shows 0 sections or 1 section (random). However there should be 15 sections like in the 64 Bit Versions.
I know it has to be something with 64/32 Bit, but I have no idea what the reason is.