@@ -11,17 +11,16 @@ import Foundation
11
11
import WatchConnectivity
12
12
13
13
14
- class InterfaceController : WKInterfaceController , WCSessionDelegate , WKCrownDelegate {
14
+ class InterfaceController : WKInterfaceController , WCSessionDelegate {
15
15
16
16
17
17
var tipAmount : Int = 10
18
18
var splitBetween : Int = 1
19
19
var billTotal = Double ( 0 )
20
20
var focusButton : Int = 0
21
- var accumulatedCrownDelta = 0.0
22
21
23
- @IBOutlet weak var currentSplit : WKInterfaceButton !
24
- @IBOutlet weak var currentTip : WKInterfaceButton !
22
+ @IBOutlet var currentSplit : WKInterfaceLabel !
23
+ @IBOutlet var currentTip : WKInterfaceLabel !
25
24
@IBOutlet weak var billButton : WKInterfaceButton !
26
25
@IBOutlet weak var currentTotal : WKInterfaceLabel !
27
26
@IBOutlet weak var costEach : WKInterfaceLabel !
@@ -33,59 +32,9 @@ class InterfaceController: WKInterfaceController, WCSessionDelegate, WKCrownDele
33
32
}
34
33
35
34
36
-
37
- func crownDidBecomeIdle( _ crownSequencer: WKCrownSequencer ? ) {
38
- accumulatedCrownDelta = 0.0
39
- }
40
-
41
- func crownDidRotate( _ crownSequencer: WKCrownSequencer ? , rotationalDelta: Double ) {
42
- accumulatedCrownDelta += rotationalDelta
43
- let threshold = 0.05
44
-
45
- // do nothing if delta is less that threshold
46
- guard abs ( accumulatedCrownDelta) > threshold else {
47
- return
48
- }
49
-
50
- if focusButton == 1 {
51
- if accumulatedCrownDelta > 0 {
52
- splitBetween += 1
53
- } else {
54
- splitBetween -= 1
55
- }
56
- if splitBetween < 1 {
57
- splitBetween = 1
58
- }
59
- if splitBetween > 50 {
60
- splitBetween = 50
61
- }
62
- }
63
-
64
- if focusButton == 2 {
65
- if accumulatedCrownDelta > 0 {
66
- tipAmount += 1
67
- } else {
68
- tipAmount -= 1
69
- }
70
- if tipAmount < 0 {
71
- tipAmount = 0
72
- }
73
- if tipAmount > 100 {
74
- tipAmount = 100
75
- }
76
- }
77
-
78
- accumulatedCrownDelta = 0
79
- updateCalc ( )
80
-
81
- }
82
-
83
-
84
35
override func awake( withContext context: Any ? ) {
85
36
super. awake ( withContext: context)
86
-
87
37
// Configure interface objects here.
88
- crownSequencer. delegate = self
89
38
updateCalc ( )
90
39
}
91
40
@@ -97,7 +46,6 @@ class InterfaceController: WKInterfaceController, WCSessionDelegate, WKCrownDele
97
46
session. delegate = self
98
47
session. activate ( )
99
48
}
100
- crownSequencer. focus ( )
101
49
updateCalc ( )
102
50
}
103
51
@@ -106,36 +54,38 @@ class InterfaceController: WKInterfaceController, WCSessionDelegate, WKCrownDele
106
54
super. didDeactivate ( )
107
55
}
108
56
109
-
110
- // chnage how many the bill is split between
111
- @IBAction func showSplitController( ) {
112
- resetButtonFocus ( )
113
- currentSplit? . setBackgroundColor ( UIColor ( red: 0 / 255 , green: 128 / 255 , blue: 255 / 255 , alpha: 1.0 ) )
114
- focusButton = 1
115
- //presentController(withName: "SplitController", context: self)
57
+ @IBAction func splitDecrease( ) {
58
+ if ( splitBetween > 1 ) {
59
+ splitBetween -= 1
60
+ }
61
+ updateCalc ( )
116
62
}
117
63
64
+ @IBAction func splitIncrease( ) {
65
+ if ( splitBetween < 99 ) {
66
+ splitBetween += 1
67
+ }
68
+ updateCalc ( )
69
+ }
118
70
119
- @IBAction func showTipController ( ) {
120
- resetButtonFocus ( )
121
- currentTip ? . setBackgroundColor ( UIColor ( red : 0 / 255 , green : 128 / 255 , blue : 255 / 255 , alpha : 1.0 ) )
122
- focusButton = 2
123
- //presentController(withName: "TipController", context: self )
71
+ @IBAction func tipPercentReduce ( ) {
72
+ if ( tipAmount > 0 ) {
73
+ tipAmount -= 1
74
+ }
75
+ updateCalc ( )
124
76
}
125
77
78
+ @IBAction func tipPercentIncrease( ) {
79
+ if ( tipAmount< 100 ) {
80
+ tipAmount += 1
81
+ }
82
+ updateCalc ( )
83
+ }
126
84
127
85
@IBAction func showBillController( ) {
128
- resetButtonFocus ( )
129
86
presentController ( withName: " BillController " , context: self )
130
87
}
131
88
132
- // reset the focus to the currently selected button
133
- func resetButtonFocus( ) {
134
- focusButton = 0
135
- currentSplit? . setBackgroundColor ( UIColor . darkGray)
136
- currentTip? . setBackgroundColor ( UIColor . darkGray)
137
- billButton? . setBackgroundColor ( UIColor . darkGray)
138
- }
139
89
140
90
// Update the actual calculations
141
91
func updateCalc( ) {
@@ -146,8 +96,8 @@ class InterfaceController: WKInterfaceController, WCSessionDelegate, WKCrownDele
146
96
let perPerson = billWithTip / Double( splitBetween)
147
97
148
98
// update display
149
- currentTip. setTitle ( " \( tipAmount) % " )
150
- currentSplit. setTitle ( " \( splitBetween) " )
99
+ currentTip. setText ( " \( tipAmount) % " )
100
+ currentSplit. setText ( " \( splitBetween) " )
151
101
currentTotal. setText ( String ( format: " %.2f " , billTotal) )
152
102
withTip. setText ( String ( format: " %.2f " , billWithTip) )
153
103
costEach. setText ( String ( format: " %.2f " , perPerson) )
0 commit comments