Ответ 1
Это, по-видимому, проблема в бета-версиях iOS8:
Решение:
Задайте свойство layoutMargins ячеек и UITableView для UIEdgeInsetsZero.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
[...]
cell.layoutMargins = UIEdgeInsetsZero;
return cell;
}
- (void) viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
[...]
self.myTableView.layoutMargins = UIEdgeInsetsZero;
}