我对nstextview
有一个小问题,当我发送[textView setWantsLayer:YES]
时,textView中的字体变得模糊,有人知道它为什么会这样吗?
[[textView enclosingScrollView] setDrawsBackground:NO];
[textView setDrawsBackground:NO];
[textView setWantsLayer:YES]`
答案 0 :(得分:4)
这里的问题可能是文本别名,因为背景颜色是透明的,因此导致它对透明背景进行别名,这看起来非常糟糕。
一般情况下,我发现只要[textView setWantsLayer: YES]
我就可以[textView setDrawsBackground: YES]
并设置不透明的背景颜色。