我有一个NSMutableArray的子类来创建我自己的类,第一个特殊对象。
something = [[MyCustomMutableArray alloc] init];
在实现中,在添加对象时,它会与__cxa_allocate_exception崩溃:
#import "MyCustomMutableArray.h"
@implementation MyCustomMutableArray
-(instancetype)init{
if (self = [super init]){
[self addObject:@"The special"];
}
return self;
}
@end
有什么想法吗?