Obj-C 中的 NSIndexPath 警告

发布于 2024-08-17 02:32:46 字数 242 浏览 8 评论 0原文

我在创建 NSIndexPath 时收到警告,

NSInteger arr[] = {0,3};
[NSIndexPath indexPathWithIndexes:arr length:2]

警告:传递 'indexPathWithIndexes:length:' 的参数 1 时的指针目标符号不同

警告是什么原因?如何让它发挥作用?

谢谢

I am getting a warning while creating the NSIndexPath,

NSInteger arr[] = {0,3};
[NSIndexPath indexPathWithIndexes:arr length:2]

warning: pointer targets in passing argument 1 of 'indexPathWithIndexes:length:' differ in signedness

What is the warning due to ?? How to make it work?

Thanks

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

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

发布评论

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

评论(2

温柔女人霸气范 2024-08-24 02:32:46

您需要使数组的类型为 NSUInteger (无符号)。

它告诉您,因为 NSIndexPath 不需要负值,您可能会通过 NSInteger 数组(实际上是 int)传入负值。

You need to have the array be of type NSUInteger (unsigned).

It's telling you that because NSIndexPath does NOT want negative values, which you could potentially be passing in via an NSInteger array (really an int).

々眼睛长脚气 2024-08-24 02:32:46

假设您正在针对 iPhone 进行开发,您应该使用 UIKit 附加功能来创建索引路径来表示 UITableViews 中的位置。您应该像这样构建示例: NSIndexPath *myIndexPath = [NSIndexPath indexPathForRow:0 inSection:3]; 请参阅 此 Apple 文档 了解更多信息。

Assuming you're developing for the iPhone, you should use the UIKit additions intended for creating index paths to represent positions in UITableViews. You should construct your example like so: NSIndexPath *myIndexPath = [NSIndexPath indexPathForRow:0 inSection:3]; See this Apple documentation for more information.

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