iOS小型計算器

来源:http://www.cnblogs.com/Mr-Lin/archive/2016/01/03/5096308.html
-Advertisement-
Play Games

//// ViewController.m// 計算器//屏幕的寬和高#define SCREEN_W self.view.frame.size.width#define SCREEN_H self.view.frame.size.height#import "ViewController.h"@i...


//

//  ViewController.m

//  計算器

 

//屏幕的寬和高

#define SCREEN_W self.view.frame.size.width

#define SCREEN_H self.view.frame.size.height

 

 

#import "ViewController.h"

 

@interface ViewController ()

//用於存儲輸入的第一個數字

@property (nonatomic,assign) CGFloat num1;

//用於存儲輸入的第二個數字

@property (nonatomic,assign) CGFloat num2;

//用於存儲最終結果

@property (nonatomic,assignCGFloat numResult;

//用於判斷符號的標記

@property (nonatomic,assign) NSInteger tag;

//顯示屏

@property (nonatomic,strong) UILabel *screen;

//

@property (nonatomic,strong) NSMutableString *str;

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    //開闢空間

    _str = [[NSMutableString alloc]init];

    // Do any additional setup after loading the view, typically from a nib.

#pragma mark - screen

    //先創建一個標簽,用於顯示

    _screen = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, SCREEN_W, SCREEN_H-400-5*10)];

    //設置屏幕的字體顏色

    [_screen setTextColor:[UIColor whiteColor]];

    //設置屏幕的背景顏色

    _screen.backgroundColor = [UIColor blackColor];

    //設置屏幕的字體大小

    _screen.font = [UIFont systemFontOfSize:40];

    //設置屏幕的字體自適應

    _screen.adjustsFontSizeToFitWidth = YES;

    //設置字體的對齊方式

    _screen.textAlignment = NSTextAlignmentRight;

    //清零

    _screen.text = [NSMutableString stringWithString:@"0"];

    [self.view addSubview:_screen];

    

#pragma mark - buttonwith+_*/

    NSArray *signArr = @[@"÷",@"x",@"-",@"+"];

    for (int i = 0; i < [signArr count]; i++) {

        UIButton *btn = [UIButton buttonWithType:UIButtonTypeSystem];

        //設置按鈕的文字

        [btn setTitle:signArr[i] forState:UIControlStateNormal];

        //設置按鈕的位置和大小

        btn.frame = CGRectMake(((SCREEN_W-30)/4.0)*3.0+30, _screen.frame.size.height+90*(i%4)+10, (SCREEN_W-30)/4.0, 80);

        //設置按鈕的背景顏色

        btn.backgroundColor = [UIColor orangeColor];

        //設置按鈕字體的大小

        btn.titleLabel.font = [UIFont systemFontOfSize:40];

        //給每個按鈕添加事件

        [btn addTarget:self action:@selector(calculate:) forControlEvents:UIControlEventTouchUpInside];

        [self.view addSubview:btn];

    }

    

#pragma mark - 單獨添加

    UIButton *goBtn = [UIButton buttonWithType:UIButtonTypeSystem];

    //設置按鈕的大小和位置

    goBtn.frame = CGRectMake(((SCREEN_W-30)/4.0)*3.0+30, _screen.frame.size.height+90*4+10, (SCREEN_W-30)/4.0, 80);

    //設置按鈕的背景顏色

    goBtn.backgroundColor = [UIColor orangeColor];

    //設置按鈕的文字

    [goBtn setTitle:@"=" forState:UIControlStateNormal];

    //設置文字的大小

    goBtn.titleLabel.font = [UIFont systemFontOfSize:40];

    //為每個按鈕添加事件

    [goBtn addTarget:self action:@selector(go:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:goBtn];

 

#pragma mark - number

    NSArray *numArr = @[@"7",@"8",@"9",@"4",@"5",@"6",@"1",@"2",@"3"];

    for (int i = 0 ; i < [numArr count]; i++) {

        UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];

        //設置按鈕的大小和位置

        btn.frame = CGRectMake(((SCREEN_W-30)/4.0+10)*(i%3), _screen.frame.size.height+90*(i/3)+90+10, (SCREEN_W-30)/4.0, 80);

        //設置按鈕的背景顏色

        btn.backgroundColor = [UIColor lightGrayColor];

        //設置按鈕的文字

        [btn setTitle:numArr[i] forState:UIControlStateNormal];

        //設置文字的大小

        btn.titleLabel.font = [UIFont systemFontOfSize:40];

        //設置文字的顏色

        [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

        //為每個按鈕添加事件

        [btn addTarget:self action:@selector(expressNum:) forControlEvents:UIControlEventTouchUpInside];

        [self.view addSubview:btn];

    }

#pragma mark - 添加清除鍵

    UIButton *cleanBtn = [UIButton buttonWithType:UIButtonTypeCustom];

    //設置按鈕的大小和位置

    cleanBtn.frame = CGRectMake(0, _screen.frame.size.height+10, (SCREEN_W-30)/4.0, 80);

    //設置按鈕的背景顏色

    cleanBtn.backgroundColor = [UIColor lightGrayColor];

    //設置按鈕的文字

    [cleanBtn setTitle:@"AC" forState:UIControlStateNormal];

    //設置文字的大小

    cleanBtn.titleLabel.font = [UIFont systemFontOfSize:40];

    //設置文字的顏色

    [cleanBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

    //為每個按鈕添加事件

    [cleanBtn addTarget:self action:@selector(clean:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:cleanBtn];

 

    

#pragma mark - 單獨添加0

    UIButton *btn0 = [UIButton buttonWithType:UIButtonTypeCustom];

    //設置按鈕的大小和位置

    btn0.frame = CGRectMake(0, SCREEN_H - 80, (SCREEN_W-30)/4.0*2+10, 80);

    //設置按鈕的背景顏色

    btn0.backgroundColor = [UIColor lightGrayColor];

    //設置按鈕的文字

    [btn0 setTitle:@"0" forState:UIControlStateNormal];

    //設置文字的大小

    btn0.titleLabel.font = [UIFont systemFontOfSize:40];

    //設置文字的顏色

    [btn0 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

    //為每個按鈕添加事件

    [btn0 addTarget:self action:@selector(expressNum:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btn0];

 

#pragma mark - 單獨添加百分號%

    UIButton *btnPrecent = [UIButton buttonWithType:UIButtonTypeCustom];

    //設置按鈕的大小和位置

    btnPrecent.frame = CGRectMake(((SCREEN_W-30)/4.0+10)*2, _screen.frame.size.height+10, (SCREEN_W-30)/4.0, 80);

    //設置按鈕的背景顏色

    btnPrecent.backgroundColor = [UIColor lightGrayColor];

    //設置按鈕的文字

    [btnPrecent setTitle:@"%" forState:UIControlStateNormal];

    //設置文字的大小

    btnPrecent.titleLabel.font = [UIFont systemFontOfSize:40];

    //設置文字的顏色

    [btnPrecent setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

    //為每個按鈕添加事件

    [btnPrecent addTarget:self action:@selector(precent:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btnPrecent];

 

 

#pragma mark - 單獨添加點"."

    UIButton *btnPoint = [UIButton buttonWithType:UIButtonTypeCustom];

    //設置按鈕的大小和位置

    btnPoint.frame = CGRectMake(btn0.frame.size.width+10, SCREEN_H-80, (SCREEN_W-30)/4.0, 80);

    //設置按鈕的背景顏色

    btnPoint.backgroundColor = [UIColor lightGrayColor];

    //設置按鈕的文字

    [btnPoint setTitle:@"." forState:UIControlStateNormal];

    //設置文字的大小

    btnPoint.titleLabel.font = [UIFont systemFontOfSize:40];

    //設置文字的顏色

    [btnPoint setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

    //為每個按鈕添加事件

    [btnPoint addTarget:self action:@selector(expressNum:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btnPoint];

    

#pragma mark - 單獨添加點"+/-"

    UIButton *btnSign = [UIButton buttonWithType:UIButtonTypeCustom];

    //設置按鈕的大小和位置

    btnSign.frame = CGRectMake(cleanBtn.frame.size.width+10, _screen.frame.size.height+10, (SCREEN_W-30)/4.0, 80);

    //設置按鈕的背景顏色

    btnSign.backgroundColor = [UIColor lightGrayColor];

    //設置按鈕的文字

    [btnSign setTitle:@"+/-" forState:UIControlStateNormal];

    //設置文字的大小

    btnSign.titleLabel.font = [UIFont systemFontOfSize:40];

    //設置文字的顏色

    [btnSign setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

    //為每個按鈕添加事件

    [btnSign addTarget:self action:@selector(signNum:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btnSign];

 

}

 

 

-(void) expressNum:(UIButton *)sender

{

    

    //先判斷首字母是不是符號

    if ([_str hasPrefix:@"+"]||[_str hasPrefix:@"-"]||[_str hasPrefix:@"x"]||[_str hasPrefix:@"÷"]) {

        //如果是,就清零

        _str = [NSMutableString stringWithString:@""];

    }

    //連續追加數字

    [_str appendString:sender.currentTitle];

    _screen.text = [NSString stringWithString:_str];

    //將輸入的第一個數字保存在num1

    _num1 = [_screen.text doubleValue];

    //用於調試

    //NSLog(@"-----%ld",_num1);

}

//判斷符號

-(void)calculate:(UIButton *)sender

{

    //先清零

    _str = [NSMutableString stringWithString:@""];

    //再重新追加符號

    [_str appendString:sender.currentTitle];

    //顯示(這個可寫可不寫)

    _screen.text = [NSString stringWithString:_str];

    if ([_str hasPrefix:@"+"]) {

        _num2 = _num1;

        _tag = 1;

    }else if ([_str hasPrefix:@"-"]){

        _num2 = _num1;

        _tag = 2;

    }else if ([_str hasPrefix:@"x"]) {

        _num2 = _num1;

        _tag = 3;

    }else if ([_str hasPrefix:@"÷"]) {

        _num2 = _num1;

        _tag = 4;

    }

    

}

//計算結果

-(void)go:(UIButton *)sender

{

    switch (_tag) {

        case 1:

            _numResult = _num2 + _num1;

            break;

        case 2:

            _numResult = _num2 - _num1;

            break;

        case 3:

            _numResult = _num2 * _num1;

            break;

        case 4:

            _numResult = _num2 / _num1;

            break;

    }

    _screen.text = [NSString stringWithFormat:@"%lg",_numResult];

    _num1 = _numResult;

}

//清除

-(void)clean:(UIButton *)sender

{

    _str = [NSMutableString stringWithString:@""];

    _screen.text = @"0";

    _num1 = 0;

    _num2 = 0;

    _numResult = 0;

}

 

//百分號

-(void)precent:(UIButton *)sender

{

    _num1 = _num1 * 0.01;

    //註意,這裡要以最簡形式(占用寬度最小)輸出,並且不會輸出無意義的0

    _screen.text = [NSString stringWithFormat:@"%lg",_num1];

}

//正負號

-(void)signNum:(UIButton *)sender

{

    //先判斷數字是否大於0,如果是,就變負

    if (_num1 >= 0) {

        //添加負號

        [_str insertString:@"-" atIndex:0];

        _num1 = [_str doubleValue];

        _screen.text = [NSString stringWithFormat:@"%lg",_num1];

    }

    //如果數字小於0,那麼變為正數

    else if (_num1 < 0)

    {

        //刪除負號

        [_str deleteCharactersInRange:NSMakeRange(0, 1)];

        _num1 = [_str doubleValue];

        _screen.text = [NSString stringWithFormat:@"%lg",_num1];

    }

}

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

@end

 

 

 

 

//大家看了之後覺得哪裡代碼可以更加優化,或者功能上有什麼補充的,麻煩評論下,感謝了

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 上一篇隨筆,已經成功開啟了Redis-server,客戶端已經可以正常對redis進行正常操作。但是,redis-server開啟的同時,一個大大doc黑屏也在那裡開啟著,接下來就對講解如何在Linux系統下讓redis-server後臺運行(相當於windows系統下以後臺服務運行)(1)打開re...
  • 最近項目要使用Redis,特將這段時間將Redis的學習經驗與大家分享,算是對這段時間學習成果的總結和技術提煉,不足之處還望大家批評指正。項目背景:有些很少改動的數據和經常使用的數據(例如系統中下拉列表數據),系統需要頻繁的與SqlServer資料庫進行數據交互,大大的增加了伺服器和SqlServe...
  • 正則表達式正則表達式是對字元串操作的一種邏輯公式, 用事先定義好的一些特定字元、及這些特定字元的組合, 組成一個"規則字元串",這個"規則字元串"用來表達對字元串的一種過濾邏輯,正則表達式就是用於描述這些規則的工具,或者說, 正則表達式就是記錄文本規則的代碼.在開發中, 我們經常會有查找符合某些複雜...
  • 新手的煩惱你不懂 - - ## 這個問題著實變態,就是普通的 UITableViewController ,數據是靜態的,運行時動態添加了一個 UIView(xib)作為 tableFooterView ,關鍵是豎屏的時候事件完全不受影響,橫豎屏一切換就收不到事件鳥。
  • 複製無處不在,用 Storyboard 做差不多的界面難免會複製,今天莫名其妙的崩潰鳥!
  • //UIImageView 用來顯示圖片的控制項 UIImageView *imgView = [[UIImageView alloc]initWithFrame:CGRectMake(10,_label.frame.size.height+10+10, self.window.frame.size....
  • 效果如圖目前旋轉和銳化的界面還沒做。編輯模塊包含圖片裁剪、旋轉、銳化。一、點擊美化圖片首頁【編輯】,進入具體操作界面 FWFunctionViewController *vc = [[FWFunctionViewController alloc] initWithImage:self.imag...
  • [轉載請註明出處]sdk是別人的,我只是下載來集成一下.smssdk下載網站:http://www.mob.com/(也有其他很多網站有類似SDK,譬如https://www.juhe.cn/等等,可以自行百度,我在這裡就演示一下MOB官網的)此網站號稱smssdk免費,可是進去一看...........
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...