0

I'm new to iOS App Development. Is it possible to show only the Mail apps which was installed in iPhone in the UIActivityController.

Harry
  • 43
  • 1
  • 7

1 Answers1

2

Not exactly. There's no way to specify the kind of apps you want to show in there. However, there is a way using which you can specify the type of services you wish to exclude.

UIActivityViewController has a property excludedActivityTypes. You can exclude all other types of activities except mail

You should be able to narrow the list of apps down quite a bit.

  • It is possible to give Email To address and Subject Text ??? – Harry Feb 15 '23 at 05:37
  • I did a little bit of searching and found this (you should find all the information that you need in this question discussion and the other linked questions): https://stackoverflow.com/questions/34264751/uiactivityviewcontroller-gmail-share-subject-and-body-going-same – Aman Shankar Sharma Feb 15 '23 at 06:51