You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using your nice library to communicate watchOS and iOS, I did use it before for watchOS 1 and no problems at all, but now trying to handle from watchOS 2 on I am facing something confusion.
Hi guys,
I am using your nice library to communicate watchOS and iOS, I did use it before for watchOS 1 and no problems at all, but now trying to handle from watchOS 2 on I am facing something confusion.
If I initialize with:
self.wormhole = [[MMWormhole alloc] initWithApplicationGroupIdentifier:@"xx" optionalDirectory:@"x" transitingType:MMWormholeTransitingTypeSessionMessage];
and then
id messageObject = [self.wormhole messageWithIdentifier:@"identifier"];
the messageObject is nil always.
If I initialize with:
self.wormhole = [[MMWormhole alloc] initWithApplicationGroupIdentifier:@"xx" optionalDirectory:@"x" transitingType:MMWormholeTransitingTypeSessionContext];
and then
id messageObject = [self.wormhole messageWithIdentifier:@"identifier"];
the messageObject isn't nil. But when I pass a message
[self.wormhole passMessageObject:@"x.x" identifier:@"identifier"];
Every listener's block will be called.
The example also does the same for me on my machine.
Perhaps I got it wrong. Hope to get some help.
Thanks!
ilion
The text was updated successfully, but these errors were encountered: