Share Audio file using UIActivityViewController

后端 未结 2 1335
时光取名叫无心
时光取名叫无心 2021-01-13 06:54

I am not able to see any item in UIActivityViewController. I want to share Audio file to Available Sharing options in iPhone device.

2条回答
  •  误落风尘
    2021-01-13 07:26

    Above answer worked for me after little bet struggle.I think there is some issue to access file path .here is modified and tested code.

       NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"sampleFile"  ofType:@"mp3"];
       NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
       NSArray *activityItems = @[soundFileURL];
    
       UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil];
       [self presentViewController:activityVC animated:YES completion:nil];
    

提交回复
热议问题