diff --git a/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m b/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m index 696aff20..83f73c54 100644 --- a/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m +++ b/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m @@ -111,6 +111,8 @@ - (void)didInitializeWithStyle:(UITableViewCellStyle)style { self.textView.backgroundColor = [UIColor clearColor]; self.textView.scrollsToTop = NO; self.textView.editable = NO; + self.textView.layoutManager.usesFontLeading = NO; + self.textView.layoutManager.allowsNonContiguousLayout = NO; self.textView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; [self.contentView addSubview:self.textView]; }