Facebook AppDelegate 未实现“FBSessionDelegate”;协议
嘿开发者, 我正在尝试将 Facebook iOS 实现到我的 Xcode 项目中。我按照 http://developers.facebook.com/docs/guides/ 上的 Facebook 教程进行操作mobile/#ios,现在实现代码后,我得到了
“FacebookSampleAppDelegate”类未实现“FBSessionDelegate”协议
我希望有人可以帮助我解决这个小问题,谢谢
Hey developers,
I am trying to implement the Facebook iOS into my Xcode project. I followed the Facebook tutorial on http://developers.facebook.com/docs/guides/mobile/#ios, now after implementing the code, I get the
Class 'FacebookSampleAppDelegate' does not implement the 'FBSessionDelegate' protocol
I hope someone can help me out with this small problem, thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 FBSessionDelegate 添加到 FacebookSampleAppDelegate 的接口中,以声明您的类符合 FBSessionDelegate 协议。
如果已经存在协议,只需添加您自己的协议,如下所示:
add FBSessionDelegate to the interface of
FacebookSampleAppDelegate
to declare that your Class conforms to theFBSessionDelegate
protocol.if there is already a protocol present just add your own like this: