I want to use a UITextField
so that only part of it will be editable.
I know about the delegation and shouldChangeCharactersInRange
but for some reason, copying the ranged part is allowed.
My goal is to get similar result to this (the 'subject' text part) without being able to copy it.
Should i use a different UITextField
with textFieldDidBeginEditing
returning false all the time?
Is there a better solution?