我想为我的计算器应用实现一个删除键。我的伪代码是:
foo = length of current number
bar = length of current number-1
current number = current number with character at index (foo-bar) removed
要在objective-c中执行此操作,我尝试使用NSRange函数以及StringbyappendingString方法实现此操作:
- (IBAction)DelPressed {
if ([self.display.text length] >=2)
{
int len = [self.display.text length];//Length of entire display
//Add to the brainlong printing out the length of the entire display
self.brainlog.text = [NSString stringWithFormat:@"Len is %g",len];
int le = ([self.display.text length]-1);//Length of entire display - 1
NSString *lestring = [NSString stringWithFormat:@"LE is %g",le];
//Add to the brainlog printing out the length of the display -1
self.brainlog.text = [self.brainlog.text stringByAppendingString:lestring];
NSRange range = NSMakeRange(le, len);//range only includes the last character
self.display.text = [self.display.text stringByReplacingCharactersInRange:range withString:@" "];//Replace the last character with whitespace
}
脑力输出(即le和len的长度)是:
Len is -1.99164 Le is -1.99164
很难看,但这是我使用iOS模拟器输入计算器的数字的图像:
我试图改变le的值(即使它显示-3或-5等的长度),le和len仍然是相同的。
我也尝试过le参考len:
int len = [self.display.text length];//Length of entire display
//Add to the brainlong printing out the length of the entire display
self.brainlog.text = [NSString stringWithFormat:@"Len is %g",len];
int le = len-1;
但两者的价值仍然相同。如何使用NSRange删除显示的最后一个字符?
编辑:使用Dustin的修复程序,我现在将一个相当冗长的函数减少为6行代码:
-(IBAction)DelPressed{
if ([self.display.text length] >=2)
{
self.display.text = [self.display.text substringToIndes:[self.display.text length] -1];
}
}
答案 0 :(得分:4)
改用substring
;如果你想要做的就是删除最后一个字符,那就更好了。
更具体地说,substringToIndex(/*length-1*/)
如果您需要使用字符串做其他事情,请检查this reference