Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for "share" button on ipad iOS9+ #148

Open
zkrige opened this issue Jan 28, 2016 · 0 comments
Open

fix for "share" button on ipad iOS9+ #148

zkrige opened this issue Jan 28, 2016 · 0 comments

Comments

@zkrige
Copy link

zkrige commented Jan 28, 2016

Crashes on ipad ios9+ if we dont set the UIPopoverPresentationController source

  • (void)actionButtonClicked:(UIBarButtonItem *)sender {
    NSArray *activities = @[[SVWebViewControllerActivitySafari new], [SVWebViewControllerActivityChrome new]];

    UIActivityViewController *activityController = [[UIActivityViewController alloc] initWithActivityItems:@[self.self.webView.request.URL] applicationActivities:activities];
    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
    UIPopoverPresentationController *popPresenter = [activityController popoverPresentationController];
    popPresenter.barButtonItem = sender;

    }
    [self presentViewController:activityController animated:YES completion:nil];
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant