Is there any way to add a custom action to the list of actions provided by the UIDocumentInteractionController?
I would like to add an \"Email\" action to the list.
You cannot add items to the Document Interaction Controller at this time.
Send by email and SMS are not available while using
- (BOOL)presentOpenInMenuFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated;
or
- (BOOL)presentOpenInMenuFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated;
Consider using
- (BOOL)presentOptionsMenuFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated;
instead.