请清除此场景。
我创建了一个名为 RootViewController 的 viewController,所以很明显我们会得到 RootViewController.h 和 RootViewController.m
然后我通过选择一个名为 viewXib 的新文件创建了一个名为 ViewScreen.xib 的 nibfile,因此我们将自动在 xibfile 中获得一个视图。我将 FilesOwner 类链接到 RootViewController。
所以如果我想将视图的背景颜色设置为“groupTableViewBackgroundColor”,我不能在属性检查器中设置它吗,将颜色设置为视图的唯一方法是在 RootViewController.m 中手动执行(声明一个视图并设置 view.backgroundColor=[UIColor groupTableViewBackgroundColor]; 我们不能通过使用 interfaceBuilder 来做同样的事情吗?
如果有人有兴趣解决这个问题,请继续。