UIBarButtonItem标签的NSArray(即NSInteger)

发布于 2024-08-16 23:11:36 字数 220 浏览 5 评论 0原文

你真的不能拥有 NSIntegers 的 NSMutableArray 吗?当我尝试将值添加到数组然后打印出来时,它们是巨大的数字(当我将标签打印到 NSLog 时,它们是 0,1,2,3 等)。

我正在尝试创建 UITabBarItem 标签的数组,以便我可以保存订单并稍后检索它。我是否被迫对 NSNumber 进行一些转换以存储到数组中,然后在启动时转换回来以获得整数值?

感谢您的帮助。

Is it true that you can't have an NSMutableArray of NSIntegers? When I try to add the values to the array and then print them out they're huge numbers (when if I print out the tag to NSLog they're 0,1,2,3 etc.).

I'm trying to create an array of my UITabBarItem's tags so I can save the order and retrieve it later. Am I forced to do some conversion to an NSNumber to store into the array and then convert back on launch to get the integer value?

Thanks for the help.

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

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

发布评论

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

评论(1

呢古 2024-08-23 23:11:36

这是正确的,在将它们添加到 NSMutableArray 之前,您需要将它们“装箱”在 NSNumbers 中,您可以执行 [array addObject:[NSNumber numberWithInt:item.tag]];

That is correct, you need to "box" them inside of NSNumbers before adding them to an NSMutableArray, you can do [array addObject:[NSNumber numberWithInt:item.tag]];

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