1

我正在为我的应用程序启用 PNS 服务...当我尝试记录我的 NSData 值并将其发送到我的服务器时,它记录为空。如果我在我的 VC 中为 ibaction 使用相同的代码,它工作正常,如果我在哪里手动输入设备令牌..这是我的代码...有什么想法可以解决我的问题吗?...

NSString* newToken = [deviceToken description];
newToken = [newToken stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"<>"]];
newToken = [newToken stringByReplacingOccurrencesOfString:@" " withString:@""];
NSString *urlString = [NSString stringWithFormat:@"http://sample.net/demo/registerDevice.php?appId=0003&deviceToken=%@",newToken];
NSLog(@"%@",newToken);
NSURL *url = [[NSURL alloc] initWithString:urlString];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
 NSData *urlData ;
NSURLResponse *response ;
urlData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&response error:nil];
NSLog(@"%@",urlData); 
4

0 回答 0