Using Xcode 27.0ß4.
I set a textField text with an emoji:
statusReponseLabel.text = "👍"
- In iOS 27, I get the expected result (on the left).
- In iOS 26.3 (simulator), I just get a question mark.
I have tested with a print, the text is properly set.
I replaced with:
statusReponseLabel.text = "A👍B"
In iOS 26.3, I get A followed by the question mark, B is skipped as well.
Is it an iOS issue or just a simulator issue in beta version ?