我现在正面临这样一个奇怪的问题,我正在尝试在我的项目演示中实现计算器。我要实现的地方是启用 ARC 并且我的项目 ARC 禁用一切都在该演示中运行良好,它在我的项目中运行完美 tOO 但是当我尝试对浮点值进行操作时,我的应用程序崩溃说 EXC_BAD_ACCESS(代码 1 ... . 下面是我的代码
.h 文件中的 _currentValue 和 _previousValue 是这样的
@property (retain,nonatomic) NSNumber* currentValue;
@property (retain,nonatomic) NSNumber* previousValue;
在我的 .m 文件中有 2 种我遇到问题的方法
- (NSString *)calculateValueToString:(NSString *)valueString ForType:(enum State)type{
_currentValue = [numberFormatterFormal numberFromString:valueString];
NSLog(@"%@",_currentValue); //whatever number i input it get prints here
[self calculateValue]; // this method get called
state = type;
if (state != Equal){
_previousValue = _currentValue;
NSLog(@"%@",_previousValue); // get print
_currentValue = @0 ;
}
NSLog(@"_previousValue%@",_previousValue); // get print
NSLog(@"_currentValue%@",_currentValue); // get print
return [numberFormatterFormal stringFromNumber:_currentValue];
}
- (void)calculateValue{
switch (state) {
case Plus:
_currentValue = [NSNumber numberWithDouble:[_previousValue doubleValue] + [_currentValue doubleValue]];
break;
case Minus: //GET ONLY EXECUTE ONLY IF OPERATION IS -
NSLog(@"%@",_currentValue); // it has value
--->>>>>>> HERE APP CRASH NSLog(@"%@",_previousValue); // app crashes here
_currentValue = [NSNumber numberWithDouble:[_previousValue doubleValue] - [_currentValue doubleValue]];
NSLog(@"%@",_currentValue);
// THIS ALL WORK PERFECTLY IN THAT DEMO WHICH IS ARC ENABLE
break;
case Multiple:
_currentValue = [NSNumber numberWithDouble:[_previousValue doubleValue] * [_currentValue doubleValue]];
break;
case Divide:
_currentValue = [NSNumber numberWithDouble:[_previousValue doubleValue] / [_currentValue doubleValue]];
break;
default:
break;
}
}