Я пытаюсь добавить подпредставление к представлению 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];
После запуска я получаю следующий экран
![Image of empty table view on iPad simulator](https://i.stack.imgur.com/4Cbzf.png)
Есть ли способ полностью скрыть табличное представление от дисплея после добавления UIView
в качестве подпредставления?