在Parse.com iOS saveInBackgroundWithBlock中添加断点

在Parse.com iOS saveInBackgroundWithBlock中添加断点,ios,parse-platform,background-process,Ios,Parse Platform,Background Process,例如,我想在块内设置断点,但xcode只是跳过它 [obj saveInBackgroundWithBlock:^(PFObject *object, NSError *error) { //instructions }]; 谢谢 只需在块中的行上设置断点。在执行块之前不会触发哇,谢谢!我花了很多时间想弄明白

例如,我想在块内设置断点,但xcode只是跳过它

    [obj saveInBackgroundWithBlock:^(PFObject *object, NSError *error) {
           //instructions
    }];

谢谢

只需在块中的行上设置断点。在执行块之前不会触发哇,谢谢!我花了很多时间想弄明白