将用户位置发送到whatsapp和facebook

时间:2015-09-09 11:46:00

标签: ios facebook google-maps uiactivityviewcontroller

我正试图通过UIActivityViewController从我的应用程序向facebook和whatsapp发送用户位置。

- (IBAction)shareUserLocation:(id)sender {

    shareArray = [[NSArray alloc]initWithObjects:[NSURL URLWithString:[NSString stringWithFormat:@"http://maps.apple.com/maps?q=%f,%f",location.coordinate.latitude,location.coordinate.longitude]],nil];
    UIActivityViewController *controller = [[UIActivityViewController alloc] initWithActivityItems:shareArray applicationActivities:nil];
    controller.excludedActivityTypes = @[];

    [self presentViewController:controller animated:YES completion:nil];


}

它工作但在苹果地图中打开位置。 有没有办法可以在Google地图中打开该位置。

P.S-我还没试过whatsApp我只测试了facebook。

0 个答案:

没有答案