假设执行了如下所示的示例块。
[testBlock testPerformWithBlock:^(BOOL finished) {
if (finished) {
self.textField.text = @"Finished";
NSLog(@"Edited to add an textfield update inside block");
}
}];
如果我在块返回 BOOL 值之前弹出包含对象 testBlock 的视图控制器会发生什么。对象会被正确释放吗?