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
0
votes
1 answer

Facebook Sharing Window Issue

I am using Sharekit for Facebook sharing on my iPhone app. I had used used the following code for setting the app icon in the sharing window. It works fine except during first time login to Facebook. NSURL *url = [NSURL…
jay
  • 3,517
  • 5
  • 26
  • 44
0
votes
1 answer

Passing UILabel to Facebook using ShareKit

On a recommendation I've added ShareKit to my app, I'd like to send the contents of a UILabel to Facebook. After trying SHKItem *item = [SHKItem text:labelText]; [SHKFacebook shareItem:item]; It crashes with -[UILabel length]: unrecognized…
mattFllr
  • 233
  • 7
  • 23
0
votes
1 answer

using share kit to share the image on Facebook

Just like the title , I just followed the step by this website : http://labs.grupow.com/blog/2012/03/05/sharekit-2-dot-0 and there was no any error to run the app , but about the result of pressing share button which was showing the action sheet…
0
votes
1 answer

iOS: Xcode: Architecture: armv7 vs armv6

I have a project that was created two years ago when iOS 2.0 was present. The app it self has been getting successful updates along the way and doing fine. So far in Xcode, in Architecture settings, I had 'armv7 arm6' and my deployment was iOS…
Gizmodo
  • 3,151
  • 7
  • 45
  • 92
0
votes
1 answer

Sharekit Facebook error

I am using ShareKit. It's working properly with Twitter API, but getting error in Facebook API. In SHKConfig #define SHKFacebookKey @"my Facebook Key" #define SHKFacebookSecret @"my Facebook Secret" Error image
Mani
  • 1,841
  • 15
  • 29
0
votes
1 answer

iPhone app not running on device after integrated Sharekit

I had integrated ShareKit 2.0 in my iPhone application. After that I am not able to run it on a device. But there is no error while I run it on the simulator. The following error message shown in the console while running on the device. dyld: Symbol…
jay
  • 3,517
  • 5
  • 26
  • 44
0
votes
1 answer

Changing the image in Facebook "Post to wall" page iOS

I had integrated Facebook in my iphone app using Sharekit. NSURL *url = [NSURL URLWithString:@"http://www.mywebsite.com"]; shareScore_ = [SHKItem URL:url title:@"Sample Post"]; [SHKFacebook shareItem:shareScore_]; How can i change the…
jay
  • 3,517
  • 5
  • 26
  • 44
0
votes
1 answer

Timeline in iOS App

I use ShareKit in most of my apps, but would like to add Timeline features into my app. Like how spotify will automatically post songs you listen to on timeline. Would this be something that could be added to my ShareKit implementation?
user717452
  • 33
  • 14
  • 73
  • 149
0
votes
1 answer

Twitter Follow us feature with the ShareKit in iOS

Now I got the Sharekit 2.0 for Facebook and twitter features. I could share text (facebook and twitter) with the SharKit 2.0. But I don't know how to implement the "follow us" feature in the twitter. I found the "SHKTwitter" class's "followMe"…
sky1224
  • 158
  • 1
  • 9
0
votes
1 answer

Facebook, Twitter and Email not working using ShareKit

I am a new iOS developer and I have created an app where I want to share links to Facebook, Twitter and email. I am using Xcode 4.2 and iOS 5. I have visited lot of sites and used lots of sample code, but I am not able to manage this. Using the…
Harun Sagar
  • 63
  • 1
  • 8
0
votes
2 answers

Customize the sharekit for iphone

I want to customize the Facebook share button functionality and want to push a new viewController as soon as user share or post on the wall using iphone. I know it is possible, we need to write just 2 or 3 line of code of javaScript but not getting…
user1246165
0
votes
2 answers

There was an error while sharing (iOS share kit for twitter)

I tried to send a photo from my app ( iOS app) using share kit in Xcode to twitter, but I got this error : there was an error while sharing . when I send it by Email or face book it's work, but for twitter I got this error . this is my code to send…
Hussain1982
  • 301
  • 2
  • 12
0
votes
1 answer

ShareKit -Evernote integration to iPhone App

I prefered to use the sharekit for the social integration to my iphone app. While configuring the evernote integration when i tested with the default credentails its worked but when I used my own credentails it doesn't work. The alert says the…
Harshit Gupta
  • 1,200
  • 12
  • 27
0
votes
1 answer

ShareKit won't display all my Sharers

I'm working on a PhoneGap (aka Cordova) project which makes use of ShareKit 2.0. As instructed by the documentation here, I removed several of the unneeded "Sharers" and disabled the "more" button. When I build the project, instead of revealing the…
emersonthis
  • 32,822
  • 59
  • 210
  • 375
0
votes
1 answer

Disabling automatic message box on ShareKit on IOS

we trying to disable the automatic message box when we authenticate twitter on an Ios App. We click connect, once it's authenticated, it opens up a message box. We just want to connect, thats it without the box. Anyone came across this?
Nikolaos Vassos
  • 246
  • 1
  • 13
1 2 3
29
30