本文實例為大家分享了iOS實現計算器功能的具體代碼,供大家參考,具體內容如下
效果圖
Masonry
使用數組來自動約束
1
2
3
4
5
6
7
8
9
|
NSArray *buttonArrayOne = @[_buttonAC, _buttonLeftBracket, _buttonRightBracket, _buttonDivide]; //withFixedSpacing: 每個view中間的間距 //leadSpacing: 左最開始的間距 //tailSpacing:; 右邊最后的的間距 [buttonArrayOne mas_distributeViewsAlongAxis:MASAxisTypeHorizontal withFixedSpacing:15 leadSpacing:15 tailSpacing:15]; [buttonArrayOne mas_makeConstraints:^(MASConstraintMaker *make) { make.top.equalTo(@(selfHeight - (buttonHeight * 5 + 110))); make.height.equalTo(@(buttonHeight)); }]; |
對最后一行單獨處理
1
2
3
4
5
6
7
8
9
10
11
|
[_buttonZero mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(@15); make.top.equalTo(@(selfHeight - (buttonHeight + 50))); make.width.equalTo(@(buttonWidth * 2 + 15)); make.height.equalTo(@(buttonHeight)); }]; [_buttonZero.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(_buttonOne.titleLabel); }]; //使0的數字對齊 |
計算部分:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
+ (Result)CalculateFor:( char *) formula andLen: ( long ) length { Result result = {0, 0.0f}; int numberOfDots = 0; int index; int digitsNum = 0; float digits[CALCULATE_MAX_DIGITS]; memset (digits, 0, sizeof (digits)); int optNum = 0; char operator[CALCULATE_MAX_OPERATOR]; memset (operator, 0, sizeof (operator)); int digitNum = 0; char digit[CALCULATE_MAX_DIGIT]; memset (digit, 0, sizeof (digit)); char *p = formula; while (length--) { switch (*p) { case '+' : case '-' : case '*' : case '/' : numberOfDots = 0; if (0 == digitNum && '-' == *p) { digit[digitNum++] = *p; } else { if (-1 == digitNum) { //剛計算過括號,符號前可以沒有數字讀入 } else if (0 == digitNum || CALCULATE_MAX_DIGITS == digitsNum - 1) { result.error = CALCULATE_ERR; return result; } else { digits[digitsNum++] = atof (digit); memset (digit, '\0' , sizeof (digit)); } digitNum = 0; operator[optNum++] = *p; } break ; case '(' : { char *pointer_son; int ExistEnd = 0; pointer_son = ++p; while (length--) { if ( '(' == *p) { ExistEnd--; } else if ( ')' == *p) { ExistEnd++; } if (1 == ExistEnd) { break ; } p++; } Result result_son = [self CalculateFor:pointer_son andLen:p - pointer_son]; if (CALCULATE_ERR == result_son.error) { result.error = result_son.error; return result; } digits[digitsNum++] = result_son.value; memset (digit, 0, sizeof (digit)); digitNum = -1; break ; } case '0' : case '1' : case '2' : case '3' : case '4' : case '5' : case '6' : case '7' : case '8' : case '9' : case '.' : digit[digitNum++] = *p; if (numberOfDots == 0 && *p == '.' ) { numberOfDots = 1; } else if (numberOfDots == 1 && *p == '.' ) { result.error = CALCULATE_ERR; return result; } break ; default : result.error = CALCULATE_ERR; return result; } if (0 == length && 0 < digitNum) { digits[digitsNum++] = atof (digit); memset (digit, 0, sizeof (digit)); digitNum = 0; } p ++; } if (digitsNum != optNum + 1) { result.error = CALCULATE_ERR; return result; } for (index = 0; index < optNum; index ++) { if ( '*' == operator[index]) { digits[index + 1] = digits[index] * digits[index + 1]; digits[index] = 0; operator[index] = '?' ; } else if ( '/' == operator[index]) { if (digits[index + 1] == 0) { result.error = CALCULATE_ERR; return result; } digits[index + 1] = digits[index] / digits[index + 1]; digits[index] = 0; operator[index] = '?' ; } } for (index = 0; index < optNum; index ++) { if ( '?' == operator[index]) { if (0 == index) { operator[index] = '+' ; } else { operator[index] = operator[index - 1]; } } } result.value = digits[0]; for (index = 0; index < optNum; index ++) { if ( '+' == operator[index]) { result.value += digits[index + 1]; } else if ( '-' == operator[index]) { result.value -= digits[index + 1]; } } return result; } |
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。
原文鏈接:https://blog.csdn.net/weixin_52192405/article/details/120642536