Stackoverflow 回答
- (instancetype)initWithContext:(id)context {
self = [super init];
if (self){
// Initialize variables here.
// Configure interface objects here.
NSLog(@"%@ initWithContext", self);
}
return self;
}
変更前
self = [super initWithContext:context];
変更後
self = [super init];
「initWithContext」 はベータの間で変更され廃止されました。
現時点では、「awakeWithContext」を使用します。
▫️参考にしたページ
No visible @interface for 'WKInterfaceController' declares the selector 'initWithContext:'
WatchKitでWKInterfaceControllerのinitメソッドが変わった?(Xcode6.2beta)【メモ】
コメントをお書きください