Objective-C valueforKey

发布于 2024-10-09 01:03:53 字数 338 浏览 4 评论 0原文

我正在使用 NSDictionary 来存储设置值,并尝试将它们分配给双精度值。但是我不知道该怎么做,valueforkey 返回一个 id,它是一个指针。我尝试使用“*”获取实际值,但这不起作用。

这是代码

tempBrain.operand = [variables valueForKey:[(NSString*)obj  stringByReplacingOccurencesOfString:VARIABLE_PREFIX  withString:@""]];

tempBrain.operand 是双变量的 setter 方法。变量是我的 NSDictionary。

I am using an NSDictionary to store a set values and I am trying to assign them to a double. However I am not sure what to do, valueforkey returns an id which is a pointer. I have tried using the '*' get the actual value but that does not work.

This is the code

tempBrain.operand = [variables valueForKey:[(NSString*)obj  stringByReplacingOccurencesOfString:VARIABLE_PREFIX  withString:@""]];

tempBrain.operand is a setter method for a double variable. Variables is my NSDictionary.

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

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

发布评论

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

评论(3

猫九 2024-10-16 01:03:53

假设存储的值是 NSNumber,您可以像这样使用 doubleValue

tempBrain.operand = [[variables objectForKey:[(NSString*)obj  stringByReplacingOccurencesOfString:VARIABLE_PREFIX  withString:@""]] doubleValue];

另请注意,我已将 valueForKey 更改为 objectForKey ,这是从 NSDictionary 获取对象的正确方法。

Assuming the value stored is an NSNumber you can use doubleValue like this:

tempBrain.operand = [[variables objectForKey:[(NSString*)obj  stringByReplacingOccurencesOfString:VARIABLE_PREFIX  withString:@""]] doubleValue];

Note also I have changed valueForKey to objectForKey, which is the correct method to use to get an object from an NSDictionary.

三岁铭 2024-10-16 01:03:53

NSDictionary 只能包含 NSObject 子类的对象。

尝试这样做:

NSMutableDictionary *dic = [NSMutableDictionary dictionaryWithCapacity:10];

// Add object
[dic setObject:[NSNumber numberWithDouble:3.0] forKey:@"Third"];

// Read object
double val = [[dic objectForKey:@"Third"] doubleValue];

NSDictionary can contain only objects of NSObject subclasses.

Try do this:

NSMutableDictionary *dic = [NSMutableDictionary dictionaryWithCapacity:10];

// Add object
[dic setObject:[NSNumber numberWithDouble:3.0] forKey:@"Third"];

// Read object
double val = [[dic objectForKey:@"Third"] doubleValue];
趁微风不噪 2024-10-16 01:03:53

我现在明白了,它返回一个对象,所以我应该向它发送 doubleValue 消息。

I get it now, it returns an object so I should send the doubleValue message to it.

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