iOS bug调试技巧学习----breakpoint&condition

给断点添加条件

- (void)testCondition2
{
NSArray *array = @[@"我们", @"一起", @"来", @"玩", @"abc123"];
NSInteger i = arc4random() % array.count;
NSString *str = array[i];
NSLog(@"%zd, %@", i, str);
NSLog(@"%zd, %@", i, str);
}

整数情况:

iOS  bug调试技巧学习----breakpoint&condition

字符串情况下(有non-ASCII characters):

iOS  bug调试技巧学习----breakpoint&condition

字符串情况下(无non-ASCII characters):

iOS  bug调试技巧学习----breakpoint&condition

这个condition 后面可以有分号(';')或者没有.

特别是在: 字符串情况下(有non-ASCII characters), 可以参考:

http://*.com/questions/17192505/error-in-breakpoint-condition

上一篇:JS对象格式化方法:pretty_format


下一篇:iOS开发实用技巧—在手机浏览器头部弹出app应用下载提示