我有一个用于推送通知服务和工作的 php 文件.. 我想在 xcode 中使用该 php 文件,例如发送设备令牌和消息,如查询字符串..
我用了这段代码
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 ..
感谢所有帮助