In Objective C for the iPhone, how would I remove the last character of a string using a button action.
|
|
|
In your controller class, create an action method you will hook the button up to in Interface Builder. Inside that method you can trim your string like this:
|
|||||||||||||||
|
|
If it's an NSMutableString (which I would recommend since you're changing it dynamically), you can use:
|
||||
|
|
|
The documentation is your friend,
|
|||||||||
|
|
The solutions given here actually do not take into account multi-byte Unicode characters ("composed characters"), and could result in invalid Unicode strings. In fact, the iOS header file which contains the declaration of
See how to use |
|||
|
|