Open in + UIDocumentInteractionController : how to filter options in SDK iOS 6 (canPerformActions is deprecated)

前端 未结 2 349
轻奢々
轻奢々 2020-12-10 12:30

Since the new SDK was release (iOS 6), the delegate method documentInteractionController:canPerformAction: of the UIDocumentInteractionControllerDelegate<

2条回答
  •  北荒
    北荒 (楼主)
    2020-12-10 12:59

    I think it is because Apple wants you to use the new UIActivity control.

    Here it's the documentation:

    http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIActivity_Class/Reference/Reference.html

    Here it's a custom control developed to support many third party apps:

    http://www.cocoacontrols.com/platforms/ios/controls/uiactivitycollection

    And this question solves how could you make your own UIActivity:

    https://stackoverflow.com/a/12766330/736384

    So, if you don't want the user can use copy: and print: methods just pass this activities to the UIActivityViewController, like this:

    [activityView setExcludedActivityTypes:[NSArray arrayWithObjects:UIActivityTypeCopyToPasteboard, UIActivityTypePrint, nil]];
    

    All the default activities are listed at the bottom of the Apple's documentation link.

提交回复
热议问题