I\'m trying to create a label programmatically using NSTextField, but it comes out blurry: screenshot
This is my code so far:
NSTextfield *textfield
If you created it via an XIB and it is blurry, I found the fix:
[textField setStringValue:@""];
If I comment this out it goes blurry; if put back it's crystal clear.