0

watch アプリと iphone アプリの間でデータを送信するために appgroup を使用しましたが、watchapp から iphone アプリにデータを送り返すことができません。この問題はウォッチ OS にあります。

私のコードは次のとおりです。

@implementation InterfaceController

@synthesize MedText,MedImage,selImage;
- (void)awakeWithContext:(id)context {
    [super awakeWithContext:context];

    // Configure interface objects here.
    // Configure interface objects here.

    NSUserDefaults *userDefaultVIT=[[NSUserDefaults alloc] initWithSuiteName:@"group.Medapp"];

    [userDefaultVIT synchronize];
    NSString *str= [userDefaultVIT stringForKey:@"MedOrgWatchVIT"];
    MedText.text=str;
    NSLog(@"%@",str);
    i=0;
    MedArr=[[NSArray alloc] init];
    MedImageArr=[[NSArray alloc] init];
}
4

1 に答える 1