2011-01-24 69 views
2

我有一個小問題nstextview,當我發送[textView setWantsLayer:YES]時,textView中的字體變得模糊,有人知道它爲什麼?字體問題與層支持NSTextView

[[textView enclosingScrollView] setDrawsBackground:NO]; 
[textView setDrawsBackground:NO]; 
[textView setWantsLayer:YES]` 

回答

4

這裏的問題很可能是因爲背景顏色是透明的,所以導致它在別的透明背景上看起來很糟糕。

一般而言,我發現只要我還[textView setDrawsBackground: YES]我可以[textView setWantsLayer: YES]並設置不透明的背景顏色。

祝你好運。