Waldemar Lima Well-Known Member Licensed User Longtime User Sep 15, 2020 #1 hi ! When I define an ApplicationLabel for my app, and separate 2 words with space, when installing in IOS the name simply "JOIN" ... example: #ApplicationLabel: Aaaaa Bbbbbb instaled: AaaaaBbbbbb Is there anything I can do to fix this?
hi ! When I define an ApplicationLabel for my app, and separate 2 words with space, when installing in IOS the name simply "JOIN" ... example: #ApplicationLabel: Aaaaa Bbbbbb instaled: AaaaaBbbbbb Is there anything I can do to fix this?
Semen Matusovskiy Well-Known Member Licensed User Sep 16, 2020 #2 You can use No-Break Space (unicode 0x00A0) instead of ordinary space. Both looks the same on the screen. To enter NBS, press Alt and type 0160. If the name is relatively long (~12-14 latin letters), IOS removes blanks. So words will be 'joined' also. Last edited: Sep 16, 2020 Upvote 0
You can use No-Break Space (unicode 0x00A0) instead of ordinary space. Both looks the same on the screen. To enter NBS, press Alt and type 0160. If the name is relatively long (~12-14 latin letters), IOS removes blanks. So words will be 'joined' also.