从上一个 Xcode 测试版开始,我的所有项目和所有示例代码都出现错误,就像 Lister app 之类的 Apple 示例代码一样!



问题出在哪儿 ?
谢谢

最佳答案

只需确保您的父类(super class)具有具有相同方法签名的方法声明。希望这可以帮助.. :)

如果您查看 WKInterfaceController document ,则看不到任何名为 initWithContext 的方法。苹果说;



你应该使用:

self = [super init];

不是:
self = [super initWithContext:context];

关于ios - 'WKInterfaceController' 没有可见的@interface 声明了选择器 'initWithContext:',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27796088/

10-11 01:46