iphone sdk - 预期的标识符错误
我正在尝试加载一个网址,并将输入字段的值添加到网址末尾,但出现“预期标识符”错误:(
[self fetchURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://localhost/test/script.php?name=%@&",[[urlField text]]]];
我做错了什么?
i'm trying to load up a url with the value of the input field added to the end of the url and it errors with "expected identitifer" :(
[self fetchURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://localhost/test/script.php?name=%@&",[[urlField text]]]];
what have I done wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您错过了括号
或尝试改为
You have missed the bracket
OR try instead