我正试图通过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。