[Solved] Greek letters in iOS doesn’t work [duplicate]


The problem is that you’re using the Greek mathematical symbols:

enter image description here

Those come from the Supplementary Multilingual Plane, and are out of bounds; you have no font that contains them.

Instead, use the Greek alphabetic symbols:

enter image description here

Using those, I entered the start of the Greek alphabet in a Label in Interface Builder and it works fine:

enter image description here

And of course setting the label’s text to "αβγδε" in code works fine too.

1

solved Greek letters in iOS doesn’t work [duplicate]