将 UIView 作为子视图添加到 UITableViewController 的视图中
我试图通过以下代码将子视图添加到 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];
中 运行后,我得到以下显示
在添加 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
Is there a way to hide the table view completely from the display after adding the UIView
as the subview?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您是否可以向 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.