0

I am a newbie to sharekit. Need some help. I would like to enable just the email and facebook options when I click the share button.. I do not want the options delicious and twitter so on... How do I that? Need some guidance...

lakshmen
  • 28,346
  • 66
  • 178
  • 276

2 Answers2

1

Use ShareKit 2.0

Edit SHKSharers.plist to include only sharers you need.

Paresh Navadiya
  • 38,095
  • 11
  • 81
  • 132
  • I was looking at this: http://stackoverflow.com/questions/6817538/ios-sharekit-selecting-the-required-sharing-services – lakshmen Nov 17 '12 at 10:45
0
favoriteSharers = [NSArray arrayWithObjects:@"SHKFacebook", @"SHKMail", nil];
return favoriteSharers;

Change this in favoriteSharersForType function in SHK.m file...

laksh
  • 2,209
  • 6
  • 21
  • 25