From the last Xcode beta i've got an error in all my project and in all my sample code , also as in Apple Sample code like Lister app !
No visible @interface for 'WKInterfaceController' declares the selector 'initWithContext:'

Where is the problem ? Thanks
Instead of
self = [super initWithContext:context];
use
self = [super init];
From Apple's Docs, this was changed between beta's:
The WKInterfaceController method initWithContext: has been deprecated. Please use awakeWithContext: instead. The designated initializer for WKInterfaceController is now init.
See: https://developer.apple.com/library/prerelease/ios/releasenotes/General/RN-iOSSDK-8.2/index.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With