I am working for Apple Watch (OS-1) and consuming the web services from iPhone application.
I'm finding difficulty to access iPhone application when iPhone device gets locked. Is there a way to access it while locked?
I am working for Apple Watch (OS-1) and consuming the web services from iPhone application.
I'm finding difficulty to access iPhone application when iPhone device gets locked. Is there a way to access it while locked?
Yes of course work.
Using this you can make call to Phone app
[WKInterfaceController openParentApplication:callDict reply:^(NSDictionary *replyInfo, NSError *error) {
}];
And In the appDelegate you can handle your stuff.
- (void)application:(UIApplication *)application handleWatchKitExtensionRequest:(NSDictionary *)userInfo reply:(void(^)(NSDictionary *replyInfo))reply {
}
And One another thing for make call in watch app there is MMWormhole for Instant call.