我需要获得像VC.view
这样的tableView我在笔尖创建TVC。并用
实例化它CustomTableViewController *customTableViewController = [[CustomTableViewController alloc] initWithNibName:@"CustomTableViewController" bundle:nil];
然后我想将其添加到我的自定义提醒代码
alertView.contentView = customTableViewController.view;
它有效。但....
困难在于此。
我在表视图中有5行,具有不同的单元格高度。 然后我把它添加到其他视图我有VC的所有高度。
如何在没有空单元格或背景的情况下获取tableView? 将BG颜色设置为清除无效
我知道问题在这里,因为我用nib创建VC,tableView没有设置,但后来我已经将它添加到视图中 - 它的所有高度设置
答案 0 :(得分:0)
将空视图设置为tabview页脚视图。它会隐藏空单元格。
self.tableView.tableFooterView = [UIView new];