我有一组模型对象 模型对象项具有2个属性
@property (nonatomic, strong)NSString *attribute;
@property (nonatomic, strong)NSMutableArray *subItems;
在subItems中,我可以拥有相同的Item对象,如果我再次访问二级数组,我将获得Item对象,在这个 Item 对象内,它将再次出现在Items的数组中。所以它可以遍历n个数字。
如果我有当前的 Item 对象,我该如何遍历此层次结构。