gpt4 book ai didi

ios - 如何在Xcode中调用带参数的url

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:47:14 24 4
gpt4 key购买 nike

我有一个用于推送通知服务和工作的 php 文件..我想在 xcode 中使用该 php 文件,例如发送设备 token 和消息,如查询字符串..

我用过这段代码

NSString *urlString = @"http://xxxxxx.com/send-notification.php?token=%@&message=test";                       
NSString *escapedString = [urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *add = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@",escapedString,token]];`

但不工作我不知道如何调用这个 php..

感谢大家的帮助

最佳答案

您需要以不同的方式创建您的网址。在您的代码中,初始 urlString 中的 %@ 以后不会被替换。

相反,尝试像这样编写代码:

NSString *urlString = [NSString stringWithFormat:@"http://xxxxxx.com/send-notification.php?token=%@&message=test", token];
NSString *escapedString = [urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *add = [NSURL URLWithString:escapedString];

创建 NSUrl 实例后,您必须打开一个到 url 的 http 连接。

关于ios - 如何在Xcode中调用带参数的url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13440718/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com