我正在开发一个 ipad 应用程序,因为我需要包含类似按钮的 facebook 页面。我已经使用 iframe 加载了按钮webview
,当用户单击按钮时,如果他们已经叹了气,那么计数应该增加或减少,否则弹出窗口会要求他们先登录。一旦他们登录,然后自动增加计数。
任何代码示例一步一步地做。
这是我webview
喜欢的按钮代码
NSString *likeButtonIframe = @"<iframe src='http://www.facebook.com/plugins/likebox.php?id=XXXXXXXXXXXXXXX&width=292&connections=0&stream=false&header=false&height=62' scrolling='no' frameborder=0' style='border:none; overflow:hidden; width:282px; height:62px;' allowTransparency='true'></iframe>";
NSString *likeButtonHtml = [NSString stringWithFormat:@"<HTML><BODY>%@</BODY></HTML>", likeButtonIframe];
[_webView loadHTMLString:likeButtonHtml baseURL:[NSURL URLWithString:@""]];
我也尝试过之前的节目,比如我会先让他登录,然后显示点赞按钮并让他们点赞。