I have a right-aligned UITextField
. Initially spaces did not appear at the end of the text when editing. This I solved using this: replacing @" "
with the non-breaking "\u00a0"
.
The above, however, only shows the space while editing the text field.
How do I also make spaces at the end of the text visible when the text field is not being edited?