UITextView 格式化

发布于 2024-11-15 07:00:27 字数 149 浏览 2 评论 0原文

我有一个 UITextView 显示以下内容:333, nik, 222 我只是想将这些文本分开并向我展示:

Number: 333
User: nik
Visits: 222

我能做什么?

I have a UITextView that shows me the following: 333, nik, 222
I just want to separate these texts and to show me:

Number: 333
User: nik
Visits: 222

how I can do?

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

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

发布评论

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

评论(2

画离情绘悲伤 2024-11-22 07:00:27
NSString *longString = myTextView.text;
NSArray *array = [longString componentsSeparatedByString:@", "];
NSString *formattedString = [NSString stringWithFormat:@"Number: %@ User: %@ Visits: %@", [array objectAtIndex:0], [array objectAtIndex:1], [array objectAtIndex:2]];
NSString *longString = myTextView.text;
NSArray *array = [longString componentsSeparatedByString:@", "];
NSString *formattedString = [NSString stringWithFormat:@"Number: %@ User: %@ Visits: %@", [array objectAtIndex:0], [array objectAtIndex:1], [array objectAtIndex:2]];
挽手叙旧 2024-11-22 07:00:27
UITextView *textView;

textView.text = @"Number: 333\nUser: nik\nVisits: 222";
UITextView *textView;

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