我正在尝试格式化一个URL字符串,但它说有太多的参数。我的代码如下:
-(IBAction)tweetRandom {
//NSLog(@"CALLED");
test = 100;
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://twitter.com/%i", test]]; // problem line
}
任何人都知道如何格式化网址?希望有URLWithFormat
的名字,但它不存在。
答案 0 :(得分:2)
你需要像这样使用stringWithFormat:
:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://twitter.com/%i", test]]];