NSString *likeButtonIframe = @"<iframe src=\"http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2FyoghurtstoryNZ&send=true&width=450&height=480&action=like&colorscheme=light&show_faces=true&border_color&stream=true&header=true\" scrolling=\"yes\" frameborder=\"0\" style=\"border:none; overflow:visible; width:292px; height:590px;\" allowTransparency=\"true\"></iframe>";
NSString *likeButtonHtml = [NSString stringWithFormat:@"<HTML><BODY>%@</BODY></HTML>", likeButtonIframe];
[webView loadHTMLString:likeButtonHtml baseURL:[NSURL URLWithString:@""]];
-(void)like {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Note" message:@"You are the member of Yoghurt Story." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alert show];
[alert release];
}
これは、警告を表示してメッセージを表示するために使用しているコードです。ただし、アラートウィンドウは表示されません。アクションが呼び出されていない可能性があります。
前もって感謝します。