在Mac开发中有时候会遇到给NSTextView赋值不了的坑.下面是解决代码.
```
dispatch_async(dispatch_get_main_queue(), ^{
NSAttributedString* attr = [[NSAttributedString alloc] initWithString:session.draftContent];
[[self.textView textStorage] appendAttributedString:attr];
});
```