Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何将 NSDictionary 值传递给变量。比如说我的 NSDictionary 里面有 3 个字符串。我想知道如何将第二个字符串应用到一个新的 NSString 变量
如果我理解正确你想要什么:
NSString *str = [theDict objectForKey:@"theKey"];
NSDictionary 中的井对象未排序,因此您可以进行objectForKey:或快速枚举并选择其中的第二个值
objectForKey: