Questions tagged [sharekit]

ShareKit: an iOS open source project to enable sharing of content via Facebook, Twitter, et al.

The project's home page is at http://getsharekit.com/

The project's Git repository is at https://github.com/ideashower/sharekit/

Takes aproximatly 5-10 lines of code to get many sharing services.

Update: ShareKit was once very useful and saved developers a ton of time. It is now obsolete and some sharers no longer work properly. In addition, most of the features ShareKit provided are now incorporated into Objective-C. There is ShareKit 2, which has some new features, is updated and well documented.

449 questions
8
votes
4 answers

Getting Sharekit to work

I followed this steps: https://github.com/ShareKit/ShareKit/wiki/Installing-sharekit to install the Sharekit. But I am facing some errors still. I am not sure how to solve this problems. The errors: Undefined symbols for architecture i386: …
laksh
  • 2,209
  • 6
  • 21
  • 25
8
votes
2 answers

"SHK.h" file not found

Sorry guys for noob question, need help. I'm try to use Sharekit - https://github.com/ShareKit/ShareKit. I'm doing all steps from "Installing sharekit" wiki page, and I have no errors before I trying to import SHK.h. SHK.h visible in autocomplete,…
Artem Shmatkov
  • 1,434
  • 5
  • 22
  • 41
7
votes
6 answers

ShareKit changes?

I haven't used ShareKit much, but I want to have only three sharing options: Facebook, Twitter, and Email. ShareKit gives far more options, including a More button. However, I don't want the More option, just the three. In SHKActionSheet.m of…
user755278
  • 1,634
  • 3
  • 16
  • 32
7
votes
2 answers

ShareKit with MonoTouch how?

How do you use ShareKit with MonoTouch? The MonoTouch Bindings project on GitHub seems to have bindings for ShareKit but I can't get them to work. I currently have an iPhone application developed using MonoTouch in MonoDevelop, but I have no idea…
6
votes
3 answers

Sharekit - Facebook configuration

I am trying to integrate sharekit in an ios app. Everything works properly but I have problem with Facebook. What I'have done so far : created an app on Facebook (no extra configuration on Facebook, like native etc..) edited SHKConfig.h and…
oiledCode
  • 8,589
  • 6
  • 43
  • 59
6
votes
1 answer

sharing multiples items with sharekit on facebook

I know how to share an image lonely: // Create a UIImage. UIImage *image = [UIImage imageNamed:@"ShareKit.jpg"]; // Wrap the UIImage within the SHKItem class SHKItem *item = [SHKItem image:image title:@"This image was sent with ShareKit!"]; //…
user821470
  • 61
  • 3
6
votes
5 answers

Getting user id of facebook and twitter in sharekit

Iam implementing facebook and twitter using sharekit for an iphone app. How can we get the user id of the logged in user so that I could send it to the server. Any help will be greatly appreciated. Thank you.
isarathg
  • 858
  • 1
  • 19
  • 37
6
votes
4 answers

Creating a custom sharing view similar to new iOS 6 button sharing

With the new iOS 6, Apple added the new UIActivityViewController (image A) sharing menu which has little icon buttons to share instead of just the old UIActionSheet text button. I want to display a UIActivityViewController but with custom buttons. I…
rob1302
  • 1,631
  • 3
  • 15
  • 18
6
votes
1 answer

Facebook Share using shareKit only displays blank screen?

i am using shareKit for Facebook/twitter sharing, when facebookSharing button clicked, it gives me the login page, but after first login it only displays a white screen and do nothing. i have done some editing on SHKConfig.h and entered facebookKey…
Neeraj Neeru
  • 570
  • 8
  • 28
5
votes
1 answer

how to handle “sendDidFinish” in sharekit

I use sharekit with mail/twitter/facebook and I am really new to objective-c. sharekit works well and sends my images like it should. in my app I have a screenshot function. I want the app to 'freeze' when a screenshot is taken, stopping to send any…
headkit
  • 3,307
  • 4
  • 53
  • 99
5
votes
3 answers

Facebook App-Application is misconfigured for Facebook integration

I am developing iphone app which shares photos on social networks.For photo sharing I am using "Sharekit".I have created Facebook App and using its api key and secrete.(used correct api key and secret.). When I try to share image with this app(even…
user1227896
  • 53
  • 1
  • 4
5
votes
1 answer

Which one is the best clone of ShareKit for iPhone Development?

ShareKit is a really nice and easy sharing solution to knock off iPhone App project without frustrations for developers. However, it seems the original github repo is not updated and there are 40 pull requests are not merged. I also resolved a few…
5
votes
1 answer

Sharekit is not working in iphone sdk

am using sharekit for sharing images in facebook, twitter and email in facebook correctly working. twitter and email is working in back of the uiview. ( see the below screen shot). here you can see the twitter form is back side of UIview. for…
Srinivas
  • 1,059
  • 1
  • 11
  • 26
5
votes
1 answer

No icon when sharing with Sharekit

I am trying to do a really basic sharing on Facebook from my app, with ShareKit. Most things looks ok, but I don't understand why there's no icon to the left, just the small one in the footer. I can't find a way to put it there. How do I customize…
Snilleblixten
  • 1,295
  • 1
  • 13
  • 15
5
votes
2 answers

Receive error when trying to post on Twitter using ShareKit

I'm trying to use sharekit to post on Twitter and Facebook. I have two buttons which call the following two methods: - (IBAction) shareOnFacebook:(id)sender { // Create the item to share NSString *someText = @"Share on Facebook."; …
1
2
3
29 30