惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
B
Blog
S
SegmentFault 最新的问题
Vercel News
Vercel News
博客园 - 聂微东
宝玉的分享
宝玉的分享
C
Check Point Blog
有赞技术团队
有赞技术团队
IT之家
IT之家
V
V2EX
爱范儿
爱范儿
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
博客园 - 司徒正美
博客园_首页
Last Week in AI
Last Week in AI
博客园 - 叶小钗
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
F
Fortinet All Blogs
腾讯CDC
J
Java Code Geeks

博客园 - K3

什么是URL,URI或URN? 软件设计思想的一些文章 (持续补充中) Mac OS X 上Lua的安装方法 Objective C - 4 - 下载图片并且加载到View Objective C - 2 - 随机数,可变字符串,字符串,SubString Objective C - 1 - 实现一个MessageBox.Show MySQL 存储过程,游标,临时表创建 List connected users–similar to task manager How to compose namespaces? Hide/Show running Console Calculate drive total/free/available space C# list installed softwares How to: Modify a Project System So That Projects Load in Multiple Versions of Visual Studio PS:WINRAR制作32位安装程序和64位安装程序选项 使用WINRAR来制作安装程序 impersonate a user VBScript - CUD registry key and value mysql script for dynamic running sql script XmlElement可以避免由XmlSerializer多余生成的代码
Objective C - 3 - 实现一个计算器
K3 · 2014-05-29 · via 博客园 - K3

代码

//
//  CalculatorViewController.m
//  Calculator
//
//  Created by sskset on 5/28/14.
//  Copyright (c) 2014 shanke. All rights reserved.
//

#import "CalculatorViewController.h"

@interface CalculatorViewController ()
@property (weak, nonatomic) IBOutlet UITextField *resultText;
@property (nonatomic) BOOL isProcessing;
@property (nonatomic) NSMutableArray *numberStack;
@property (nonatomic) NSMutableArray *operandStack;
@end

@implementation CalculatorViewController

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

-(NSMutableArray *)numberStack
{
    if(!_numberStack)
        _numberStack = [[NSMutableArray alloc] init];
    
    return _numberStack;
}

- (IBAction)operandPressed:(UIButton *)sender {
    
    if([self isAvailableToCalculate])
    {
        [self doCalculate];
    }
    else
    {
        [self.numberStack addObject:self.resultText.text];
    }
    
    [self.operandStack addObject:sender.titleLabel.text];
    self.isProcessing = NO;
}

- (IBAction)numberPressed:(UIButton *)sender {
    
    if (self.isProcessing) {
        self.resultText.text =
        [self.resultText.text stringByAppendingString:sender.titleLabel.text];
    }
    else{
        self.resultText.text = sender.titleLabel.text;
        self.isProcessing = YES;
    }
}

- (IBAction)resetPressed:(id)sender {
    
    self.isProcessing = NO;
    
    [self.numberStack removeAllObjects];
    [self.operandStack removeAllObjects];
    
    self.resultText.text = @"0";
}

-(void)doCalculate
{
    NSString *operand = [self.operandStack lastObject];
    
    if(operand)
    {
        NSString *outObject = [self.numberStack lastObject];
        int outputInteger = outObject ? [outObject intValue] : 0;
        [self.numberStack removeLastObject];
        
        int resultInteger = 0;
        
        if ([operand isEqualToString:@"+"])
        {
            resultInteger =  [self.resultText.text intValue] + outputInteger;
        }
        else if ([operand isEqualToString:@"-"])
        {
            resultInteger = outputInteger - [self.resultText.text intValue];
        }
        else if ([operand isEqualToString:@"*"])
        {
            resultInteger = outputInteger * [self.resultText.text intValue];
        }
        else
        {
            resultInteger = [self.resultText.text intValue] == 0 ? 0 : outputInteger / [self.resultText.text intValue];
        }
        
        [self.operandStack removeLastObject];
        
        NSString *resultString = [NSString stringWithFormat:@"%d", resultInteger];
        self.resultText.text = resultString;
        [self.numberStack addObject:resultString];
    }
}

-(BOOL)isAvailableToCalculate
{
    return [self.operandStack lastObject] != nil;
}

- (IBAction)enterPressed:(id)sender
{
    [self doCalculate];
}

@end

界面

posted on 2014-05-29 05:12  K3  阅读(1761)  评论()    收藏  举报