Say I have a fixed size UITextfield, I want to "display" the associated text starting from the n-th character.
E.g:
Normal UITextField with text set to 'Hello World'
*************
*HELLO WORLD*
*************
What I want, n-th=4:
*************
*LO WORLD *
*************
Some notes: I don't want to modify the UITextfield's text (say: deleting the missing characters), the idea is that the whole text should be there, but the "focus" moved few characters forward.