We can use the substringToIndex method for this, using the length of our original string minus 1:
NSString *something = @"12345"; something = [something substringToIndex:(something.length - 1)]; // something is now 1234
We can use the substringToIndex method for this, using the length of our original string minus 1:
NSString *something = @"12345"; something = [something substringToIndex:(something.length - 1)]; // something is now 1234
If you enjoy my content, please consider supporting me on Ko-fi. In return you can browse this whole site without any pesky ads! More details here.