Probably the easiest way is to create SHKActionSheet subclass and override
+ (SHKActionSheet *)actionSheetForType:(SHKShareType)type;
- (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated;
Do not forget to set your subclass in configurator's - (Class)SHKActionSheetSubclass
config method. This way you can call sharekit the same way as in the demo app, I mean you can create action sheet like this:
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];
Another possibility is to create standard UIActionSheet and call each sharer's convenience methods. See the code in my other answer on SO. This is appropriate if you have only fixed number of sharers - when you do not need to use SHKShareMenu.