We can use the substringToIndex method for this, using the length of our original string minus 1:
1 2 3 4 |
NSString *something = @"12345"; something = [something substringToIndex:(something.length - 1)]; // something is now 1234 |