タイトルにあるように、このコンパイラエラー「宣言されていない識別子の使用」が発生します。基本的にいくつかの数学方程式である「operationPerformed」を「結果」に書き込もうとしています。私はXcodeを初めて使用するので、罰しないでください:)。あなたの時間を感謝します!
それに応じて編集されたコード
@interface CalculatorViewController ()
@end
@implementation CalculatorViewController
-(void)setOperand:(double)aDouble
{
operand = aDouble;
}
-(double)performOperation:(NSString *)operation
{
if ([operation isEqualToString:@"sqrt"])
{
operand = sqrt(operand);
}
else if ([operation isEqualToString:@"+/-"] && operand !=0)
{
operand = -1 * operand;
}
else if ([operation isEqualToString:@"1/x"] && operand !=0)
{
operand = 1.0 / operand;
}
else if ([operation isEqualToString:@"sin"])
{
operand = sin(operand);
}
else if ([operation isEqualToString:@"cos"])
{
operand = cos(operand);
}
else if ([operation isEqualToString:@"tan"])
{
operand = tan(operand);
}
else
{
[self performWaitingOperation];
waitingOperation = operation;
waitingOperand = operand;
}
return operand;
}
-(void)performWaitingOperation
{
if ([@"+" isEqual:waitingOperation] )
{
operand = waitingOperand + operand;
}
else if ([@"*" isEqual:waitingOperation])
{
operand = waitingOperand * operand;
}
else if ([@"-" isEqual:waitingOperation])
{
operand = waitingOperand - operand;
}
else if ([@"/" isEqual:waitingOperation])
{
if(operand)
{
operand = waitingOperand / operand;
}
}
}
-(IBAction)operationPressed:(UIButton *)sender
{
if (userIsInTheMiddleOfTypingANumber)
{
setOperand:[[display text] doubleValue];
userIsInTheMiddleOfTypingANumber = NO;
decimalAlreadyEnteredInDisplay = NO;
}
NSString * operation = [[sender titleLabel] text];
double result = [self operformOperation:operation];
[display setText:[NSString stringWithFormat:@"%f", result]];
}