我正在按照这个简单的HOW TO来让Facebook与iOS5和iOS6一起工作。
这对iOS6很有用,但我在iOS5上遇到以下错误。
对话框正在显示,但是当我尝试触摸屏幕时,应用程序崩溃了。
这是代码:
// Invoke the dialog
[mainDelegate.facebook dialog:@"feed" andParams:params andDelegate:self];
这是错误:
-[FBDialog scrollViewDidScroll:]: unrecognized selector sent to instance 0x40b4550
答案 0 :(得分:0)
@implementation UIWebView(CustomScroll)
- (void) scrollViewDidScroll:(UIScrollView *)scrollView{
[self.delegate scrollViewDidScroll: scrollView];
}
@end
问题是由我导入的类中的代码引起的。