Currently i am using the following watchkit delegates.. I need to check whether they are being called or not while using simulators.
-(void)session:(WCSession *)session didReceiveApplicationContext:(NSDictionary<NSString *,id> *)applicationContext
{
NSLog(@"REminders Array %@",applicationContext);
}
- (void)session:(WCSession *)session didReceiveUserInfo:(NSDictionary<NSString *,id> *)userInfo{
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"Received userInfo Transferr");
NSLog(@"%@", userInfo);
});
}
but they are not getting called while using simulators it is working fine in iphone applications. Any idea how to work with these??