UIBarButtonItem标签的NSArray(即NSInteger)
你真的不能拥有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是正确的,在将它们添加到 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]];