I have a UITextField that I'd like to add a "?" suffix to all text entered.
The user should not be able to remove this "?" or add text to the right hand side of it.
What's the best way to go about this?
|
I have a UITextField that I'd like to add a "?" suffix to all text entered. The user should not be able to remove this "?" or add text to the right hand side of it. What's the best way to go about this? |
|||
|
|
|
You'll probably need to subclass UITextField and override its |
|||
|
|
Use the
|
|||
|
|
|
For a single-line UITextField you should be able to measure the size of the NSString (it has a measurement function in there, somewhere) and move a UILabel to the right position. |
|||
|
|
|
I would add a method that is called when edit finishes:
|
|||
|
|
|
I had this issue and I wrote a subclass to add this functionality: https://github.com/sbaumgarten/UIPlaceholderSuffixField. Hopefully you have found a solution by now but if you haven't, this should work. |
|||
|
|