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...
Asked
Active
Viewed 209 times
2 Answers
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
-
is it the best way to do that, since we don't want to change the sub project – LiangWang Feb 25 '13 at 03:49