ideashower / ShareKit

Drop in sharing features for all iPhone and iPad apps

Home Page:http://getsharekit.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Using shareDelegate

muhammadnasr opened this issue · comments

I have tried ShareKit and it works perfect.
Nice work.

I use it without ActionSheet, I use my custom share view.
The only problem we have is that I need to get notified when the share is done so we hide our custom share view.

This is the code we use.

NSString *someText = @"AL7amdo ll ALLAH";
SHKItem *item = [SHKItem text:someText];
SHKSharer * facebook=[SHKFacebook shareItem:item];
facebook.shareDelegate=self; // self is my own class.

After a couple of sharing the app crashes.

Do you know if there is any fix for this?

Thank you for your support.