Skip to content

panda-network/TUSafariActivity

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TUSafariActivity

Version License Platform

TUSafariActivity is a UIActivity subclass that provides an "Open In Safari" action to a UIActivityViewController.

TUSafariActivity screenshot

Installation

CocoaPods

TUSafariActivity is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'TUSafariActivity', '~> 1.0'

Usage

(See example Xcode project)

Simply alloc/init an instance of TUSafariActivity and pass that object into the applicationActivities array when creating a UIActivityViewController.

Objective-C

NSURL *URL = [NSURL URLWithString:@"http://google.com"];
TUSafariActivity *activity = [[TUSafariActivity alloc] init];
UIActivityViewController *activityViewController = [[UIActivityViewController alloc] initWithActivityItems:@[URL] applicationActivities:@[activity]];

Swift

let URL = NSURL(string: "http://google.com")!
let activity = TUSafariActivity()
let activityViewController = UIActivityViewController(activityItems: [URL], applicationActivities: [activity])

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.

About

A UIActivity subclass that opens URLs in Safari

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Objective-C 48.9%
  • Shell 41.4%
  • Ruby 5.2%
  • C 4.5%