Grand Central Dispatch EXC_BAD_ACCESS例外

mse*_*dio 3 xcode grand-central-dispatch ios ios5.1

我有一个空块在Xcode的iPhone 6.0模拟器中正常运行,但是当我切换到iPhone 5.1模拟器时,我得到以下异常:"EXC_BAD_ACCESS".

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        // I've removed all code from here and exception still occurs.
    });
Run Code Online (Sandbox Code Playgroud)

有什么想法导致这个?dispatch_async行抛出异常.虽然我使用ARC,但不确定它是否重要.

mse*_*dio 7

在我的错误中,我将iOS部署目标设置为6.0.我现在已将其更新为5.1,它运行正常.