举个例子
BOOL testBool = YES;
if (testBool == NO) {
//do something
NSLog(@"test success");
}
如果我们想进入判断,那么得改变testBool的值,我们只需要在if (testBool == NO)这一行上断点,然后输入
call testBool = NO
就OK了
举个例子
BOOL testBool = YES;
if (testBool == NO) {
//do something
NSLog(@"test success");
}
如果我们想进入判断,那么得改变testBool的值,我们只需要在if (testBool == NO)这一行上断点,然后输入
call testBool = NO
就OK了