UIActivityViewController completionHandler how to check if activity send or not successfully?
Asked Answered
P

1

2

I want to send one string via airdrop, I want to call one function when the String is received on other device successfully. I had implemented it through UIActivityViewController and I check it via completionHandler.

Here is my scenario : Device A ->send a string To Device B If Device B receive have two option -> Accept or Decline I want to call one function on Device A when Device B will receive or Decline that message.

Below is my implementation:

UIActivityViewController *activityViewController = [[UIActivityViewController alloc] initWithActivityItems:@[self.customURLContainer] applicationActivities:nil];

    activityViewController.completionHandler = ^(NSString *activityType, BOOL completed) {
        NSLog(@"completed dialog - activity: %@ - finished flag: %d", activityType, completed);

        if ( completed )
        {
            NSLog(@"completionHandler - Succeed");
        }
        else
        {
            NSLog(@"completionHandler - didn't succeed.");
            // didn't succeed.
        }

But the above function always return 0, wether string is "Sent" or "Decline" by the other device.

Is it possible to check the on Device A? Because we can see the activity on Device A if receive than "Sent" and if Decline than "Declined".

Paddie answered 9/1, 2014 at 10:4 Comment(1)
Did you find an answer to your question? I mean to say, does it work now?Varuna
C
2

No, this is currently not possible. You should file a bug report with Apple requesting this though

Clamp answered 10/1, 2014 at 17:35 Comment(1)
is this issue still true?Varuna

© 2022 - 2024 — McMap. All rights reserved.