计算器应用程序不会向数组添加操作数

时间:2013-03-04 21:24:13

标签: ios objective-c

我正在尝试制作一个计算器应用程序,但是当我按下输入时,没有任何东西被推入数组。我有一个名为CaculatorBrain的类,其中定义了pushElement方法,但是(现在)我在视图控制器中定义并实现了pushElement方法。

当我记录操作数对象,因为当按下enter键时它在控制台中输入,数组的内容为零!那是为什么?

#import "CalculatorViewController.h"
#import "CalculatorBrain.h"

@interface CalculatorViewController ()
@property (nonatomic)BOOL userIntheMiddleOfEnteringText;
@property(nonatomic,copy) NSMutableArray* operandStack;


@end

@implementation CalculatorViewController

BOOL userIntheMiddleOfEnteringText;

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}


-(NSMutableArray*) operandStack {
    if (_operandStack==nil) {
        _operandStack=[[NSMutableArray alloc]init];
    }
    return _operandStack;


}



-(CalculatorBrain*)Brain
{
   if (!_Brain) _Brain=  [[CalculatorBrain alloc]init];
    return _Brain;
}



- (IBAction)digitPressed:(UIButton*)sender {
    if (self.userIntheMiddleOfEnteringText) {
    NSString *digit= [sender currentTitle];
    NSString *currentDisplayText=self.display.text;
    NSString *newDisplayText= [currentDisplayText stringByAppendingString:digit];
    self.display.text=newDisplayText;
     NSLog(@"IAm in digitPressed method");
}
    else
    {
        NSString *digit=[sender currentTitle];
        self.display.text = digit;
       self. userIntheMiddleOfEnteringText=YES;
    }
}


-(void)pushElement:(double)operand {
    NSNumber *operandObject=[NSNumber numberWithDouble:operand];
    [_operandStack addObject:operandObject];
    NSLog(@"operandObject is %@",operandObject);
    NSLog(@"array contents is %@",_operandStack);

}


- (IBAction)enterPressed {

[self  pushElement: [self.display.text doubleValue] ];

NSLog(@"the contents of array is %@",_operandStack);

        userIntheMiddleOfEnteringText= NO;

}

1 个答案:

答案 0 :(得分:0)

看起来操作数堆栈从未被初始化。

当您直接访问_operandStack时,您不会通过-(NSMutableArray*) operandStack,这是分配和初始化操作数堆栈的唯一位置。如果未分配数组,则无法在其中放入任何内容,这就是将内容记录为nil的原因。

我建议在self.operandStack方法内部使用_operandStack(使用检查-(NSMutableArray*) operandStack是否为nil的方法),或者在{{viewDidLoad方法中分配操作数堆栈。 1}}。