初始化无需强制转换即可生成整数

发布于 2024-11-14 04:26:18 字数 526 浏览 1 评论 0原文

我收到此警告,但我不知道如何解决它。我收到警告的行是

NSInteger thescore = [[myDictionary objectForKey:@"Score"] objectAtIndex:0];

If it make a Difference, myDictionary is a NSDictionary

Edit: 这是怎么回事?顺便说一句,我的数组是 NSMutableArray 而不是 NSArray

NSInteger thescore = [[myDictionary valueForKey:@"Score"] integerValue];

编辑 2: @Bvarious 提到我应该执行以下操作:

int thescore = [[myDictionary objectForKey:@"Score"] integerValue];

I get this warning and I am not sure how to fix it. The line where I get the warning is

NSInteger thescore = [[myDictionary objectForKey:@"Score"] objectAtIndex:0];

If it makes a difference, myDictionary is a NSDictionary

Edit: How is this? Btw my array is a NSMutableArray and not a NSArray

NSInteger thescore = [[myDictionary valueForKey:@"Score"] integerValue];

Edit 2: @Bavarious mentioned that I should do the following:

int thescore = [[myDictionary objectForKey:@"Score"] integerValue];

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

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

发布评论

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

评论(1

献世佛 2024-11-21 04:26:18

调用[someArray objectAtIndex:0] 的结果是一个对象。并且 NSInteger 是一个原始类型:

typedef long NSInteger;

(cmd +双击 xcode 中的 NSInteger 以查看定义)

我猜你可能实际上正在存储 NSNumber 数组中的对象。在这种情况下,你可以这样做

NSNumber *thescore = [someArray objectAtIndex:0];

The result of call [someArray objectAtIndex:0] is an object. And NSInteger is a primitive type:

typedef long NSInteger;

(cmd + double-click on NSInteger in xcode to see the definition)

I guess you might actually be storing NSNumber objects in your array. In this case, you could do

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