Я хочу использовать Sharekit в своем приложении, вот код:
NSURL *url = [NSURL URLWithString:@"http://www.mysite.com"];
SHKItem *item = [SHKItem URL:url title:@"ShareKit"];
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];
[SHK setRootViewController:self.navigationController];
[actionSheet showInView:[self view]];
[actionSheet release];
Но мое приложение продолжает падать на
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];
Почему?Спасибо за любую помощь!