我已经为我的应用程序创建了一个更新,它使用 xib 文件来加载一个特定的视图控制器。在更新中,我删除了它xib
并从控制器的源文件中删除了所有出口。现在我以这种方式创建我的控制器:
RRVacancySearchViewController *vacancySearchController = [[RRVacancySearchViewController alloc] initWithStyle:UITableViewStylePlain];
当我在 iPhone 上运行更新版本而不是旧版本时,此控制器无法加载并出现错误:
*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<RRVacancySearchViewController 0x1fdaaa20> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key _historyTableView.'
但我没有_historyTableView
了。它是从一个旧xib
文件加载的,我不想再使用了。
我应该怎么做才能让 iPhone 完全忘记这一点xib
并且不使用它?