gpt4 book ai didi

iphone - 将导航 Controller 添加到现有的 UITableView

转载 作者:行者123 更新时间:2023-12-03 20:45:18 25 4
gpt4 key购买 nike

总的来说,我对 Objective-C 和 iPhone SDK 都很陌生,所以请耐心解答菜鸟问题。

我已经成功实现了一个表格 View ,其中包含标题、副标题和单元格图标的数组,并且效果很好。我想要做的是根据选择的单元格加载 PDF 文件,并且我知道 Web View 似乎是最佳选择?

我遇到了障碍,我无法将导航 Controller 添加到 xib 文件中的现有 TableView 中(我是作为单个 View 应用程序开始的),并且我在互联网上阅读的所有内容都建议开始以不同的方式。要么我做错了一些事情,要么我完全错过了一些事情。

那么我是否可以用我目前拥有的东西来实现这个导航 Controller 和 Web View ,或者我是否必须重新开始,复制并粘贴各种代码?

感谢任何帮助。

干杯。

马特。

最佳答案

如果您有一个代表 UITableView 的 XIB 文件,那么您应该能够执行的操作是:

1) 展示 UITableView 时:

UITableViewController *tableViewCon = ...; // Load it from the XIB file
UINavigationController *navCon = [[UINavigationController alloc] initWithRootViewController:tableViewCon];
// Present the navCon, however you're currently presenting your table view

2) 在 UITableView 中,按下单元格时:

WebView *webView = ...; // Create the web view, and also load a URL
[self.navigationController pushViewController:webView animated:YES];

关于iphone - 将导航 Controller 添加到现有的 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8464245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com