0
NSString *likeButtonIframe = @"<iframe src=\"http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2FyoghurtstoryNZ&amp;send=true&amp;width=450&amp;height=480&amp;action=like&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=true&amp;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];
}

这是我用来显示警报以显示消息的代码。但是,不会出现警报窗口。可能是行动没有被调用。

提前致谢。

4

0 回答 0