Multiple share in iOS
See original GitHub issuei have tried multiple share in android its working fine, when i tried to do it in iOS with changed path
var path = RNFS.DocumentDirectoryPath + ‘/’ + trimmedFileName; file is successfully written. so when I try to share with code
let shareOptions = { type: "application/pdf", title: "Share Via", message: message, urls: dataArray, }; Share.open(shareOptions);
dataArray holds the urls to downloaded file in array
when i select a medium such as mail only message is viewed and i cant see the files listed in the attachments
but single sharing is working with the code
let shareOptions = { type: "application/pdf", title: "Share Via", message: message, url: dataArray[0], }; Share.open(shareOptions);
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (1 by maintainers)
Top GitHub Comments
Yes i did solved using version 1.1.1
@NawazKhanMd did you solve?