gpt4 book ai didi

iphone - 将 nsstring 转换为 NSMutableDictionary

转载 作者:行者123 更新时间:2023-12-03 17:32:14 26 4
gpt4 key购买 nike

我有以下数组:

    NSString *testString = @"1|Car|Red|Ford";
NSArray *testArray = [testString componentsSeparatedByString:@"|"];

是否可以将“1”设置为键,然后将“Car”、“Red”和“Ford”设置为该键的对象?

因此,如果我在表中使用 NSMutableDictionary,我可以为每个单元格提供大量数据。

最佳答案

NSString *testString = @"1|Car|Red|Ford";
NSArray *testArray = [testString componentsSeparatedByString:@"|"];
NSString *key = [testArray objectAtIndex:0];
NSArray *values = [testArray subarrayWithRange:NSMakeRange(1, [testArray count] - 1)];
NSDictionary *dict = [NSDictionary dictionaryWithObject:values forKey:key];

关于iphone - 将 nsstring 转换为 NSMutableDictionary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8417284/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com