通过网络发送 iphone 的 [[UIDevice currentDevice] name]
我正在尝试通过使用 CFNetwork 实现的网络发送设备名称。我的应用程序将成功通过模拟器发送 NSString,但不会在实际设备上发送。类引用将此函数的属性设置为:
@propertyic,readonly,retain) NSString *name
我尝试使用 stringWithFormat 和 stringByAppendingString 格式化我打算使用的最终字符串,但使用这两种方法都不起作用。
I'm trying to send the device name over a network implemented with CFNetwork. My application will successfully send the NSString over the simulator, but not on an actual device. The class reference has the properties for this function set at:
@propertyic,readonly,retain) NSString *name
I've tried formatting the final string I intend to use by using stringWithFormat as well as stringByAppendingString but it won't work using either method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先尝试发送您创建的愚蠢名称,例如
如果您看到此内容,则问题不在于发送 NSString,我认为这对您有用。比,你知道用这个得到名字
现在你可能遇到的错误是:空名称或带有无效字符的名称,这对我有用:
看看这是否是问题
First try to send a a stupid name that you create, like
If you see this, the problem is not send a NSString, I think this is working for you. Than, you know get the name with this
Now the bug you can have is: A nill name or name with invalid character, this work for me:
See if this is the problem