View Controllerで以下のようにメソッドを書いています:
- (IBAction)expressionEvaluation:(UIButton *)sender {
NSDictionary *testValues = [NSDictionary dictionaryWithObjectsAndKeys:@"x", 2, @"y", 3, @"z", 4, nil];
//the below line gives the error
double result = [self.brain evaluateExpression:self.brain.expression usingVariableValues:testValues];
NSString *resultString = [NSString stringWithFormat:@"%g", result];
self.display.text = resultString;
}
そして、私の「脳」クラスでは、まだ完成していないメソッドを宣言しました。
#import <Foundation/Foundation.h>
@interface CalculatorBrain : NSObject
- (void) pushOperand:(double)operand;
- (void) setVariableAsOperand:(NSString *)variableName;
- (void) performWaitingOperation;
- (double) performOperation:(NSString *)operation;
@property (readonly) id expression;
+ (double)evaluateExpression: (id)anExpression
usingVariableValues: (NSDictionary *)variables; //declared here
@end
....h と .m:
+ (double) evaluateExpression:(id)anExpression usingVariableValues:(NSDictionary *)variables {
double result = 0;
int count = [anExpression count];
for (int i = 0; i < count; i++) {
}
return result;
}
「'CalculatorBrain' の目に見える @interface がセレクター 'evaluateExpression:usingVariableValues' を宣言していません」というエラーが表示されるのはなぜですか? 私はobjective-cが初めてですが、これは私の宣言が表示されていないことを意味すると思います。ただし、私はこの言語に慣れていないため、構文/フォーマットの問題かどうかはわかりません。