通过网络发送 iphone 的 [[UIDevice currentDevice] name]

发布于 2024-10-05 08:02:25 字数 248 浏览 7 评论 0原文

我正在尝试通过使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

横笛休吹塞上声 2024-10-12 08:02:25

首先尝试发送您创建的愚蠢名称,例如

NSString *nameTest = @"Name of iPad"

如果您看到此内容,则问题不在于发送 NSString,我认为这对您有用。比,你知道用这个得到名字

NSString *name = [[UIDevice currentDevice] name];

现在你可能遇到的错误是:空名称或带有无效字符的名称,这对我有用:

NSArray *toRemove = [NSArray arrayWithObjects:@"'", @"\"", @"<", @">", nil];
for (NSString *currentChar in toRemove) {
    name = [name stringByReplacingOccurrencesOfString:currentChar 
                                           withString:@""];
}    
if ([name isEqualTo:@""]) name = @"no name";

看看这是否是问题

First try to send a a stupid name that you create, like

NSString *nameTest = @"Name of iPad"

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

NSString *name = [[UIDevice currentDevice] name];

Now the bug you can have is: A nill name or name with invalid character, this work for me:

NSArray *toRemove = [NSArray arrayWithObjects:@"'", @"\"", @"<", @">", nil];
for (NSString *currentChar in toRemove) {
    name = [name stringByReplacingOccurrencesOfString:currentChar 
                                           withString:@""];
}    
if ([name isEqualTo:@""]) name = @"no name";

See if this is the problem

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文