- (void) dealloc { someObject.delegate = nil; }
但是,在使用ARC时,我无法直接调用dealloc.编写单元测试的最佳方法是什么?
MyType* __weak zzz = [[MyType alloc] init];
该实例将立即解除分配.
或者,@L_301_0@并调用dealloc.