NSArray 中单个索引的多个对象
是否可以在 NSArray 中为单个索引存储多个对象?
Is it possible to store multiple objects for a single index in an NSArray?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在 NSArray 中为单个索引存储多个对象?
Is it possible to store multiple objects for a single index in an NSArray?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
是的,您可能只想拥有一个由
NSMutableArray
组成的NSArray
。然后你可以这样调用:或者
Yes, you probably just want to have an
NSArray
ofNSMutableArray
s. You can then call something like this:or
我不确定您希望多个对象的动态程度如何。创建一个具有多个对象属性的非常简单的类怎么样?
我正在考虑一个结构体,但我不认为
NSArray
像指针对象。并使用它作为 NSArray 的元素类型
NSArray* myArray;
I'm not sure how dynamic you want the multiple objects to be. How about creating a very simple class with properties of the multiple objects?
I was thinking about a struct but I don't think
NSArray
s like pointer objects.And use this as the element type for NSArray
NSArray<myCompound*>* myArray;
当然,有很多方法可以做到这一点,最常见的是为每个数组元素分配一个字典
Sure there are many ways to do this with the most common being to assign a dictionary to each array element