在我的主 tableView 中添加 Facebook Like 按钮?
我正在使用一个基于导航的应用程序。它解析 feed 并显示 tableView。 tableView 显示所有提要项目的标题。我想在 tableView 的末尾添加一个按钮,当用户单击该按钮时,它应该喜欢特定的 facebook 组。我已经将 FB Connect API 集成到我的应用程序中。我怎样才能做到像按钮一样?提前致谢
i am working with a nav based app. which parses a feed and displays a tableView. tableView shows titles of all feed items. i want to add a button in the end of the tableView and when user will click that button, it should like the specific facebook group. i already have the FB Connect API integrated into my application. how can i do that like button? thanx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UITableViewCells 有一个accessoryView(和一个accessoryType)。查看
UITableViewCell
的文档。您可以在单元格右侧放置一个按钮作为附件视图。强烈推荐阅读:
http://cocoawithlove.com/2009/04/easy -custom-uitableview-drawing.html
然后:
http: //cocoawithlove.com/2010/12/uitableview-construction-drawing-and.html
UITableViewCells have an
accessoryView
(and anaccessoryType
). Check out the docs forUITableViewCell
. You can place a button at the right of your cell as an accessory view.Highly recommended reading:
http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html
and then:
http://cocoawithlove.com/2010/12/uitableview-construction-drawing-and.html