我对Facebook页面的操作有问题。
currentVriend
是NSObject
类。
我收到错误:too many arguments to method call expected 1 have 2
-(void)goFB
{
NSURL *url = [NSURL URLWithString:@"fb://profile/%g",self.currentVriend.fbid];
[[UIApplication sharedApplication] openURL:url];
}
我做错了什么?
也许再做一次String
?
感谢
答案 0 :(得分:3)
我相信你错过了正确的NSString方法
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"fb://profile/%g",self.currentVriend.fbid]];