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];
}
这是我用来显示警报以显示消息的代码。但是,不会出现警报窗口。可能是行动没有被调用。
提前致谢。