无法将String设置为URLWithString

时间:2014-08-28 21:40:04

标签: ios nsstring nsobject url-scheme

我对Facebook页面的操作有问题。

currentVriendNSObject类。

我收到错误: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? 感谢

1 个答案:

答案 0 :(得分:3)

我相信你错过了正确的NSString方法

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"fb://profile/%g",self.currentVriend.fbid]];