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