gpt4 book ai didi

ios - NSMutableDictionary removeObjectForKey 奇怪的行为

转载 作者:行者123 更新时间:2023-11-29 12:34:53 29 4
gpt4 key购买 nike

如果我这样在 NSMutableDictionary 中设置一个对象:

NSString* idFriend = @"Superman";
[reqWaitDictionary setObject:[NSNumber numberWithBool:YES] forKey:idFriend];

当我尝试像这样删除它时它不起作用:

[reqWaitDictionary removeObjectForKey:idFriend];

为了让它工作,我必须这样设置 NSMutableDictionary:

[reqWaitDictionary setObject:[NSNumber numberWithBool:YES] forKey:[NSString stringWithFormat:@"%@",idFriend]];

对我来说这很奇怪,因为 idFriend 已经是一个 NSString。谁知道为什么?

最佳答案

如果您正确声明,两者都可以正常工作。仅声明类型不同。

像这样尝试:

[reqWaitDictionary setObject:idFriend forKey:@"someKey"];

关于ios - NSMutableDictionary removeObjectForKey 奇怪的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26651670/

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