以下の「delegate:self」行で、「クラス」をタイプ「id」のパラメーターに送信する互換性のないポインタータイプという警告が表示されます。
+ (SHKActionSheet *)actionSheetForType:(SHKShareType)type
{
SHKActionSheet *as = [[SHKActionSheet alloc] initWithTitle:SHKLocalizedString(@"Share")
delegate:self
cancelButtonTitle:nil
destructiveButtonTitle:nil
otherButtonTitles:nil];
as.item = [[[SHKItem alloc] init] autorelease];
as.item.shareType = type;
この警告はShareKitにあります。誰かがそれを修正する方法を知っているなら、私に知らせてください!