Skip to content

A UIActivity subclass for sharing messages with WhatsApp.

License

Notifications You must be signed in to change notification settings

jakobsa/SSCWhatsAppActivity

 
 

Repository files navigation

SSCWhatsAppActivity

Version Platform

Requirements

iOS 6.0 is required.

Installation

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

pod "SSCWhatsAppActivity"

Usage

Typical usage will look something like this:

NSString *stringToShare = @"This is a message I'd like to share via WhatsApp";
NSURL *urlToShare = [NSURL URLWithString:@"https://github.com/sascha/SSCWhatsAppActivity"];
	
SSCWhatsAppActivity *whatsAppActivity = [[SSCWhatsAppActivity alloc] init];

UIActivityViewController *activityViewController = [[UIActivityViewController alloc] initWithActivityItems:@[stringToShare, urlToShare] applicationActivities:@[whatsAppActivity]];

[self presentViewController:activityViewController animated:YES completion:nil];

Please note that you can only share instances of NSString, NSURL or UIImage. WhatsApp does not support sharing text and images at the same time, so as soon as you provide an UIImage all NSString and NSURL instances will be ignored. In addition you can only share one UIImage. Have a look at the demo app to see it in context.

Demo screenshot

Author

Sascha Schwabbauer, [email protected]

License

SSCWhatsAppActivity is available under the MIT license. See the LICENSE file for more info.

About

A UIActivity subclass for sharing messages with WhatsApp.

Resources

License

Stars

Watchers

Forks

Packages

No packages published