我正在将 UIView(作为容器视图)添加到 UITableViewController。出于某种原因,UITableView 分隔符通过 UIView 可见。我正在运行 iOS 7。
UIView *container = [[UIView alloc] initWithFrame:CGRectMake(0, 200, self.view.width, 50)];
container.opaque = YES;
container.backgroundColor = [UIColor colorWithRed:224.0/255.0 green:224.0/255.0 blue:224.0/255.0 alpha:1.0];
[self.view container];