recently i used shareKIt to develop share property on my iPhone app, and have added the required frameworks as they instructed, but while running their is no errors but number or compiler warnings. also when i click Facebook/ twitter from action sheet the apps get stuck and crashes..
i got the error on SHKActionSheet.m saying badAccess
- (void)dealloc
{
[item release];
[sharers release];
[super dealloc];
}
and compiler warning on
SHKActionSheet *as = [[SHKActionSheet alloc] initWithTitle:SHKLocalizedString(@"Share")
delegate:self
cancelButtonTitle:nil
destructiveButtonTitle:nil
otherButtonTitles:nil];
saying
incomplete pointer type sending "Class" to parameter of type 'id< UIActionSheetDelegate >'
need some help, else is their any other way to implement share property?