문제

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?

도움이 되었습니까?

해결책

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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top