I use NUI ( https://github.com/tombenner/nui ) and I want to display text in button with certain font and size. Here is my 'css' file:

accessoryButton {
    font-name: GothamSSm-Light;
    font-size: 20;
    font-color: white;
}

And what I get from it (screenshot with blended layers):

damaged text.

And it happens not only with button, I tried the same on UITextField - same result. If I change font-name on Arial, for example, text appears correctly. I've checked that font on test project without NUI, it works fine.

有帮助吗?

解决方案

This has to do with improperly formatted ttf files. the trick is to manually edit the hhea table. Check out this awesome article which explains exactly how to do it:

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top