我正在尝试构建我的 iOS 应用程序的界面。一遍又一遍地开始新项目我仍然遇到细节视图控件的问题(见图)。
在这里我得到了截图:
详细视图显示当用户触摸 UITableView 行时。您可以在模拟器屏幕上看到我的设计和最终结果之间的差异——这就是问题所在
主要xib设计
这就是我打开详细视图的方式:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Navigation logic may go here. Create and push another view controller.
DetailViewController *detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil];
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];
}