Pregunta

I have a Share Sheet that shares an image and I want to get rid of the "Add to Contacts" option. How would I go about doing this?

¿Fue útil?

Solución

Have a look at the excludedActivityTypes property of the UIActivityViewController. Pass in UIActivityTypeAssignToContact.

UIActivityViewController avc = ... // create the activity view
avc.excludedActivityTypes = @[ UIActivityTypeAssignToContact ];
// now present the activity view controller
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top