I am using UIActivityViewController
to share some text and url which works great when sending some text and a url.
I currently need to use the completion handler to perform additional actions depending whether the user cancelled the UIActivityViewController
or actually sent something.
The completion handler (activityViewController.completionHandler
for iOS 7 is deprecated in iOS 8 which is now activityViewController setCompletionWithItemsHandler
) returns a BOOL completed
value which correctly returns true
when sending with email
sms
Facebook
Twitter
however when sending via Airdrop
the user must press Cancel
to dismiss the UIActivityViewController
once sent and thus I always receive a false
from the completion handler.
Does anyone know if there's a way of knowing that the user has sent using Airdrop
when the UIActivityViewController
is dismissed?
Thanks