如何将 NSMutableArray 中的元素放入 C char 中?

发布于 2024-12-13 14:53:15 字数 416 浏览 0 评论 0原文

我有一个 NSMutableArray,我需要将其元素排序到单独的 C 字符中。

如何做到这一点?或者将元素放入 NSStrings 中更好?

我已经尝试过了,当我尝试记录结果时它崩溃了:

NSMutableArray *array = [[NSMutableArray alloc] init];

... do something to fill the array ...

NSString *string;

string = [array objectAtIndex:0];

NSLog(@"String: %@", string);

*我真的更喜欢将数组的元素放入 C char 中,因为我已经有一些使用 char 而不是 NSStrin 的工作代码 *g。

谢谢!

I have a NSMutableArray and I need to sort its elements into separate C char.

How to accomplish that? Or is it better to put the elements into NSStrings?

I've tried this, and it crashes when I try to log the result:

NSMutableArray *array = [[NSMutableArray alloc] init];

... do something to fill the array ...

NSString *string;

string = [array objectAtIndex:0];

NSLog(@"String: %@", string);

*I really prefer putting the elements of the array into C char, because I already have some woking code using char instead of NSStrin*g.

Thanks!

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

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

发布评论

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

评论(1

深爱不及久伴 2024-12-20 14:53:15

没有看到任何将 NSString 转换为 C 字符的具体原因。要对充满 NSStrings 的数组进行排序,请尝试此方法 -

NSMutableArray *array = [[NSMutableArray alloc] init];
sortedArray = [array sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
NSString *string = [sortedArray objectAtIndex:0];
NSLog(@"String: %@", string);

Dont see any specific reason to convert NSString to C chars. To sort an array full of NSStrings try this method -

NSMutableArray *array = [[NSMutableArray alloc] init];
sortedArray = [array sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
NSString *string = [sortedArray objectAtIndex:0];
NSLog(@"String: %@", string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文