Apple Watch initWithContext エラー解決策


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」を使用します。

  

目 次