我正在尝试在 didRegisterForRemoteNotificationsWithDeviceToken 中将 iOS 设备名称与 deviceToken 一起发送到我的服务器。我的设备中有一个撇号,请求字符串显示为 ....&name=John+Doe,Äôs+iPhone ...我试过用“”替换“'”和用“”替换“‚Äô”..但都没有修复它..我假设我需要转换编码?
NSString *string = [[UIDevice currentDevice] name];
output-> John Doe’s iPhone
编辑
输出来自 NSLog(string);