Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序中弹出了原生 iOS 共享表,允许人们通过社交媒体、iMessage 等共享内容。但是,我可以删除其中的“添加到阅读列表”和“复制”条目吗? 它们对我的应用程序没有用,所以如果可能的话,我想摆脱它们。
可行吗?
在 iOS 6 中,您可以删除 Copy 条目,但不能删除 Add to Reading List 项。
设置excludedActivityTypes你的属性UIActivityViewController:
excludedActivityTypes
UIActivityViewController
activityViewController.excludedActivityTypes = @[ UIActivityTypeCopyToPasteboard ];
如果您需要对工作表进行更多控制,您可能必须使用像REActivityViewController这样的开源重新实现。