如何在 SPLITVIEWCONTROLLER 的 DetailViewController 中创建 tableView ? (IPAD)

发布于 2024-11-10 06:48:56 字数 104 浏览 1 评论 0原文

我想要的是在 splitviewController 的详细视图中显示 tableView ..,我只能在其他站点中找到 ImageView 示例..,如果有人让我知道它是如何完成的,那就太好了

What I all want is to display a tableView in the detailView of the splitviewController.., I could find only ImageView samples in other sites.., Would be great if Anyone let me know how it is done

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就此别过 2024-11-17 06:48:56

您可以创建一个 UITableViewController 并将其视图作为子视图添加到 DetailViewControllers 视图中:

    UITableViewController *tableView = [[UITableViewController alloc] initWithStyle:UITableViewStylePlain];
    [self.view addSubview:tableView.view];

这是您想要的吗?

You can create a UITableViewController and add it's view to the DetailViewControllers view as a subview:

    UITableViewController *tableView = [[UITableViewController alloc] initWithStyle:UITableViewStylePlain];
    [self.view addSubview:tableView.view];

Is this what you were looking for?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文