基于iPhone UITabBar的app + UITableView,带有详细信息视图

时间:2012-04-24 13:39:21

标签: iphone uitableview uitabbar

我正在编写一个基于UITabBar的iPhone应用程序。其中一个标签项是UITableView,效果很好。但是现在我想添加一个详细视图,所以我创建了一个并尝试将它与TableView连接。但是有一个问题,如果我触摸一个项目没有任何反应,选择会出现,但不会进入细节视图,选择不会消失。 我根据使用app delegate的示例编写了代码,因此,这些是我无法适应我的代码的代码。提前谢谢!

1 个答案:

答案 0 :(得分:2)

您是否实施了- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath的功能UITableViewDelegate

**编辑**

正如我在评论中所说,你需要实现一个UINavigationController。这是一个使用界面构建器的示例:

http://www.cimgf.com/2009/06/25/uitabbarcontroller-with-uinavigationcontroller-using-interface-builder/