All Projects → x2on → simple-share-ios

x2on / simple-share-ios

Licence: Apache-2.0 license
Simple-Share for iOS is an easy drop-in library for sharing. (Facebook, Twitter, Mail, Safari)

Programming Languages

objective c
16641 projects - #2 most used programming language
shell
77523 projects

Simple-Share for iOS

Overview

Simple-Share is an easy drop-in library for sharing on iOS.

Supported Shares

  • Facebook (facebook-ios-sdk 3.5.1)
  • Twitter
  • Mail
  • Safari
  • Google Chrome

Instructions

First checkout the submodules:

git submodule init
git submodule update

Then build the facebook sdk:

cd submodules/facebook-ios-sdk/scripts
./build_framework.sh

Then run ./build.sh and drop the libsimple-share.a file into your Xcode project. Copy the include folder also to your project and set the "Header Search Path" to this folder.

For facebook you must also setup the App Id, App Name and the URL Scheme: (https://developers.facebook.com/docs/getting-started/facebook-sdk-for-ios/)

You can share an URL to Facebook with this single line:

[facebookShare shareUrl:[NSURL URLWithString:@"http://www.felixschulze.de"]];

Twitter:

[simpleTwitterShare shareText:@"Some text to share"];

Mail:

[simpleMailShare shareText:@"Some text" subject:@"Some subject" isHTML:NO];

Google Chrome:

[googleChromeShare openInChrome:[NSURL URLWithString:@"http://www.felixschulze.de"]];

Compatibility

Lowest supported iOS is 5.0

Sample App

The project also includes a sample iOS App

License

Apache License, Version 2.0 - See LICENSE

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].