简体   繁体   English

使用NSUInteger和NSMutableDictionary在iOS中进行值转换的问题

[英]Issue with value conversion in iOS using NSUInteger and NSMutableDictionary

I have a NSMutableDictionary which holds several items in a key/value pairing. 我有一个NSMutableDictionary ,它在键/值配对中包含几个项目。 I have stored strings with a key and retrieved them without issue, however, when I store a value of type NSUInteger and try to fetch that back from the dictionary I end up with a really large value. 我已经使用密钥存储了字符串并且没有问题地检索它们,但是,当我存储NSUInteger类型的值并尝试从字典中取回时,我最终得到了一个非常大的值。

The first part of my if statement I check to see if the value I am looking for is not null or greater than zero. 我的if语句的第一部分我检查我要查找的值是不是null还是大于零。 I am trying to basically hold a score or value in the dictionary that I can access so I can add to or take away from. 我试图基本上在字典中保存我可以访问的分数或值,以便我可以添加或删除。

As you can see in the else statement I have two NSLog statements, this is where I see the difference in the value. 正如您在else语句中看到的,我有两个NSLog语句,这是我看到值的差异的地方。 The first NSLog statement displays a value of 100, as I would expect from clicking my 'Happy' button. 第一个NSLog语句显示值100,正如我期望点击“快乐”按钮。 However, once the value is retrieved back from the dictionary the currentTotal is 109709424. I am sure this has something to do with the format specifier I am using in the conversion of this integer value to a string. 但是,一旦从字典中检索到值,则currentTotal为109709424.我确信这与我在将此整数值转换为字符串时使用的格式说明符有关。 I tried storing this value, currentTotal, as an int or NSUInteger in my dictionary under the key "Total" but the conversion from a non objective-c type object to an 'id' is disallowed in ARC so I am stuck. 我尝试将此值currentTotal存储为我的字典中的一个int或NSUInteger,键在“Total”下,但是在ARC中不允许从非objective-c类型对象到'id'的转换,所以我被卡住了。

NSUInteger currentTotal = 0;
NSUInteger happinessValue = 100;
NSUInteger sadnessValue = 20; 

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

    AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

    if ([appDelegate.data valueForKey:@"Total"] != nil || [appDelegate.data valueForKey:@"Total"] > 0) {

        currentTotal = (int)[appDelegate.data valueForKey:@"Total"];

        if ([segue.identifier isEqualToString:@"Happy"]) {
            [segue.destinationViewController setHappiness:(int)happinessValue :segue.identifier];
            currentTotal = add(currentTotal, happinessValue);

            [appDelegate.data setObject:(NSString *)[NSString stringWithFormat: @"Value: %i", happinessValue] forKey:@"Value"];
        } else if ([segue.identifier isEqualToString:@"Sad"]) {
            [segue.destinationViewController setHappiness:(int)sadnessValue :segue.identifier];
            currentTotal -= [segue.destinationViewController setTotalValue:happinessValue];
            [appDelegate.data setObject:(NSString *)[NSString stringWithFormat: @"Value: %i", sadnessValue] forKey:@"Value"];
        }
    }
    else {

        if ([segue.identifier isEqualToString:@"Happy"]) {
            [segue.destinationViewController setHappiness:(int)happinessValue :segue.identifier];
            NSLog(@"Old value ELSE: %i", currentTotal);
            currentTotal = [segue.destinationViewController setTotalValue:happinessValue];
            NSLog(@"New value ELSE: %i", currentTotal);
            [appDelegate.data setObject:(NSString *)[NSString stringWithFormat: @"Value: %i", happinessValue] forKey:@"Value"];
        } else if ([segue.identifier isEqualToString:@"Sad"]) {
            [segue.destinationViewController setHappiness:(int)sadnessValue :segue.identifier];
            currentTotal = [segue.destinationViewController setTotalValue:happinessValue];
            [appDelegate.data setObject:(NSString *)[NSString stringWithFormat: @"Value: %i", sadnessValue] forKey:@"Value"];
        }

        NSLog(@"Current Total: %i", currentTotal);
        [appDelegate.data setObject:[NSString stringWithFormat:@"%d", currentTotal] forKey:@"Total"];
        NSLog(@"Total stored: %i", (int)[appDelegate.data valueForKey:@"Total"]);
    }

}

This looks like a problem: 这看起来像一个问题:

currentTotal = (int)[appDelegate.data valueForKey:@"Total"];

-valueForKey: returns a pointer to an Objective-C object, not an int , so you cannot cast it to an int and expect anything useful to happen. -valueForKey:返回指向Objective-C对象的指针,而不是int ,因此您无法将其-valueForKey:转换为int并期望发生任何有用的事情。 If it is an NSNumber , then you need to do something like this: 如果它是NSNumber ,那么你需要做这样的事情:

currentTotal = [[appDelegate.data valueForKey:@"Total"] intValue];

See the docs on NSNumber for more information. 有关更多信息,请参阅NSNumber上的文档

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM