将 UIView 作为子视图添加到 UITableViewController 的视图中

发布于 2024-11-13 09:09:27 字数 551 浏览 0 评论 0原文

我试图通过以下代码将子视图添加到 UITableViewController 的视图

//In a UITableViewController Implementation file
self.loadingPageView = [[[UIView alloc]initWithFrame:[UIScreen mainScreen].applicationFrame] autorelease];
self.loadingPageView.frame = self.view.bounds;

self.loadingPageView.backgroundColor = [UIColor darkGrayColor];

[self.view addSubview:loadingPageView];

中 运行后,我得到以下显示

iPad 模拟器上的空表格视图的图像

在添加 UIView 作为子视图后,有没有办法完全隐藏表格视图?

I am trying to add a subview to a UITableViewController's view via the following code

//In a UITableViewController Implementation file
self.loadingPageView = [[[UIView alloc]initWithFrame:[UIScreen mainScreen].applicationFrame] autorelease];
self.loadingPageView.frame = self.view.bounds;

self.loadingPageView.backgroundColor = [UIColor darkGrayColor];

[self.view addSubview:loadingPageView];

After I run, I get the following display

Image of empty table view on iPad simulator

Is there a way to hide the table view completely from the display after adding the UIView as the subview?

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

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

发布评论

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

评论(1

樱娆 2024-11-20 09:09:27

我不确定您是否可以向 tableViewController 的视图添加一些内容。
我会将 tableViewController.tableView 和 loadingPageView 添加到一个超级视图中。

I am not sure if you can add something to the view of a tableViewController.
I would add both the tableViewController.tableView and the loadingPageView to one superview.

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