anybody know how I can set the maximum amount of characters in a TextField on the iPhone SDK when I load up the UIView ?
|
While the UITextField class has no max length property, it's relatively simple to get this functionality by setting the text field's
Before the text field changes, the UITextField asks the delegate if the specified text should be changed. The text field has not changed at this point, so we grab it's current length and the string length we're inserting, minus the range length. If this value is too long (more than 25 characters in this example), return When typing in a single character at the end of a text field, the Deleting single characters or cutting multiple characters is specified by a |
|||||||||||||||||
|
|
Thank you august! (Post) This is the code that I ended up with which works:
|
|||
|
You can't do this directly -- UITextField has no "maxLength" attribute --, but you can set the UITextField's delegate, then use:
|
|||||||||
|
|
To complete August answer, an possible implementation of the proposed function (see UITextField's delegate). I did not test domness code, but mine do not get stuck if the user reached the limit, and it is compatible with a new string that comes replace a smaller or equal one.
|
||||
|
|
|
The best way would be to set up a notification on the text changing. In your -awakeFromNib of your view controller method you'll want:
Then in the same class add:
Then link up the outlet myTextField to your UITextField and it will not let you add any more characters after you hit the limit. Be sure to add this to your dealloc method:
|
|||
|
|
|
Using Interface builder you can link and get the event for "Editing changed" in any of your function. Now there you can put check for the length
|
|||
|
|
|
Often you have multiple input fields with a different length.
|
|||
|
|
|
To make it work with cut & paste of strings of any length, I would suggest changing the function to something like:
|
||||
|
|
|
I simulate the actual string replacement that's about to happen to calculate that future string's length:
|
|||
|
|
|
This should be enough to solve the problem (replace 4 by the limit u want). Just make sure to add delegate in IB.
|
|||
|
|
but I have also one question: if i have write 200 characters, i can't delete! |
||||
|
|
|
Other answers do not handle the case where user can paste a long string from clipboard. If I paste a long string it should just be truncated but shown. Use this in your delegate:
|
|||
|
|
|
I found this quick and simple
|
|||||
|