Objective-C符号存根为:在NSMutableArray上覆盖init时__cxa_allocate_exception?

时间:2017-08-08 11:21:23

标签: objective-c nsmutablearray

我有一个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

有什么想法吗?

0 个答案:

没有答案