CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Feb 2016 |
Maintained by alexruperez.
ARSafariActivity is a UIActivity subclass that provides an "Open in Safari" action to a UIActivityViewController.
UIActivity is iOS >= 6 only, so is the subclass.-fobjc-arc compiler flag to ARSafariActivity.m in Target Settings > Build Phases > Compile Sources.Add the ARSafariActivity subfolder to your project. There are no required libraries other than UIKit.
(See example Xcode project)
Simply alloc/init an instance of ARSafariActivity and pass that object into the applicationActivities array when creating a UIActivityViewController.
NSURL *url = [NSURL URLWithString:@"http://alexruperez.com"];
ARSafariActivity *safariActivity = [[ARSafariActivity alloc] init];
UIActivityViewController *activityViewController = [[UIActivityViewController alloc] initWithActivityItems:@[url] applicationActivities:@[safariActivity]];
[self presentViewController:activityViewController animated:YES completion:nil];Note that you can include the activity in any UIActivityViewController and it will only be shown to the user if there is a URL in the activity items.
podspec file added by @aaronbrethorst bundle added by @raymondjavaxx iOS6 icon from http://iconfinder.com and added by @banaslee