gpt4 book ai didi

ios NSUinteger 类型 'id'

转载 作者:可可西里 更新时间:2023-11-01 04:31:40 26 4
gpt4 key购买 nike

今天我的大脑出了问题。我知道这一定很简单,但我就是不明白。

CGFloat *minutes = [self.displayData objectForKey:index];

将“NSUInteger”(又名“unsigned int”)发送到“id”类型的参数的指针转换不兼容的整数

index 是一个循环中的 NSUInteger,(0 1 2 3 等)

我如何通过这一关?谢谢。

最佳答案

字典等待一个对象作为键(id)而不是一个普通整数(NSUInteger)。

尝试将整数包装在 NSNumber 对象中。

CGFloat *minutes = [self.displayData objectForKey:[NSNumber numberWithUnsignedInteger:index]];

关于ios NSUinteger 类型 'id',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9367532/

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