来自数组的NSNumber

时间:2011-10-27 21:27:32

标签: iphone objective-c ios xcode

我有一个数组,我试图将我的数组中的整数转换为int或NSInteger。它使用NSDictionaries。以下代码不起作用:

int color = [[records objectAtIndex:0] valueForKey: @"color"];

请注意,我正在使用Core Data Fetch保存到名为“records”的数组中。

由于

1 个答案:

答案 0 :(得分:3)

试试这个:

int color = [[[records objectAtIndex:0] valueForKey: @"color"] intValue];