Cannot add object to an NSMutableArray array

后端 未结 2 547
旧巷少年郎
旧巷少年郎 2020-12-21 05:09
@interface SimataDetailViewController () 

@property Simata *simata;

@property (nonatomic, copy) NSMutableArray *simataList;

@end

@implementation SimataDetailView         


        
2条回答
  •  轮回少年
    2020-12-21 05:26

    Most likely self.simataList is nil. Try NSLogging self.simataList itself, rather than its count.

提交回复
热议问题