无法找到接口控制器 class 'InterfaceController' 来实例化

Unable to find interface controller class 'InterfaceController' to instantiate

我每次 运行 项目并尝试导航到另一个屏幕时都会收到此错误。

Unable to find interface controller class 'HelpInterfaceController' to instantiate

我正在正确使用我所知道的:
- (IBAction)HelpButton { [self presentControllerWithName:@"help" context:nil]; }
名称 help 也与标识符中的名称相同。 那么我哪里出错了?

我发现错误了!这是因为我的 .m 文件,它的目标成员是 MemGame 而不是 MenGame WatchKit Extension。所以我取消选中第一个选项并选择第三个选项,现在它是 运行 完美。