我有一个自定义的 tableViewController 我要添加到 TabBarController
self.tabBarController.viewControllers = [NSArray arrayWithObjects:someOtherViewController, customTableViewController, nil];
self.tabBarController.selectedIndex = 1;
我遇到的问题是运行 iOS7 的 iPhone 4 屏幕底部的选项卡栏覆盖了最后 1.5 个 tableViewCells。当我使用 iOS 模拟器 - iPhone Retina(4 英寸)/iOS 7.0 时,问题仍然存在。
在不使用“幻数”的情况下,使 tableView 与屏幕底部的 tabBar 顶部对齐的正确方法是什么?