In Android I can for example open mp4 files in user's apps from my own app (using Intents). In the next example - intent for playing a video:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(newVideoPath));
intent.setDataAndType(Uri.parse(newVideoPath), "video/mp4");
startActivity(intent);
Is there something similar for iOS? Can I open from my app for example url (of video) in Photos, VLC or another player (which are installed on iPhone/iPad)
if yes, any example in Swift
?