0
I am doing a treatment for Uitextfied editing to format text as decimal with decimal separators and thousands. My question is how to always position the cursor in the right corner of the text field?
Grateful
0
I am doing a treatment for Uitextfied editing to format text as decimal with decimal separators and thousands. My question is how to always position the cursor in the right corner of the text field?
Grateful
2
You can do this through the code:
[self.fieldValor setTextAlignment:NSTextAlignmentRight];
Or by Interface Builder, has this property:
Browser other questions tagged objective-c xcode uitextfield
You are not signed in. Login or sign up in order to post.
Paul, it wouldn’t be quite that. The idea is not to reposition the cursor during typing.
– Celso Melero