我无法从新项目运行 watchkit 应用程序。如果我运行 Apple 的示例项目,它运行良好。如果我通过为 watchkit 添加一个目标来将 watchkit 添加到我现有的项目中。然后运行它,即使在我的情节提要中,我有一个设置为具有蓝色背景的主界面控制器,但随着时间的推移出现黑屏。这行代码被调用。
- (void)willActivate {
// This method is called when watch view controller is about to be visible to user
[self.listTable setNumberOfRows:5 withRowType:@"List"];
NSLog(@"%@ will activate", self);
}
我的 iPhone 主应用程序(iPhone 应用程序)没有在模拟器上运行。
这基本上是我看到的。