使用 Objective-C 解析字符串

发布于 2024-11-04 06:07:04 字数 233 浏览 4 评论 0原文

如何解析 xcode url 并获取返回的数据 ie

1

比拉尔

工程师

不同的 xcode 字段,即

NSString *id=1
NSString *name=bilal
NSString *designation=engineer

注释。我的网址是自行构建的,只是返回字段

How to parse an xcode url and get data that returns i.e

1

bilal

engineer

to different xcode fields i.e

NSString *id=1
NSString *name=bilal
NSString *designation=engineer

note. my url is self constructed to simply return the fields

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

回首观望 2024-11-11 06:07:04

我不知道您是否已经建立了与网络服务的连接……如果没有,请在 Google 或 Stack Overflow 中查找 NSURLConnection。

关于你问题中我唯一理解的部分:

NSString* result = @"1\nbilal\nengineer";
NSArray* components = [result componentsSeparatedByString:@"\n"];

NSString* id = [components objectAtIndex:0];
NSString* name = [components objectAtIndex:1];
NSString* designation = [components objectAtIndex:2];

I don't know if you are already establishing a connection to your web service or not… if not look up NSURLConnection in Google or Stack Overflow.

Regarding the only part of your question that I understood:

NSString* result = @"1\nbilal\nengineer";
NSArray* components = [result componentsSeparatedByString:@"\n"];

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