Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SWF-12 added interface objects
  • Loading branch information
ahm11003 committed Mar 13, 2019
1 parent 7eb407c commit e8c3eb3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
Expand Up @@ -144,7 +144,20 @@
<!--Pay Bill Interface Controller-->
<scene sceneID="LZb-Zj-fBw">
<objects>
<controller id="8l2-lZ-A2A" customClass="PayBillInterfaceController" customModule="SynchronyFinancial"/>
<controller id="8l2-lZ-A2A" customClass="PayBillInterfaceController" customModule="SynchronyFinancial">
<items>
<label width="1" alignment="left" text="Label" textAlignment="center" id="yO7-4J-X9Y"/>
<button width="1" alignment="left" title="Button" id="Daj-Om-1Kd"/>
<label width="1" alignment="left" text="Label" textAlignment="center" id="6Ge-5p-oR1"/>
<button width="1" alignment="left" title="Button" id="jJU-Ri-dVH"/>
</items>
<connections>
<outlet property="balanceLabel" destination="yO7-4J-X9Y" id="6yH-xz-T1O"/>
<outlet property="minimumLabel" destination="6Ge-5p-oR1" id="fUS-vk-eUE"/>
<outlet property="payBalanceButton" destination="Daj-Om-1Kd" id="mXb-U5-UbA"/>
<outlet property="payMinimumButton" destination="jJU-Ri-dVH" id="St8-en-o4U"/>
</connections>
</controller>
</objects>
<point key="canvasLocation" x="1105" y="-53"/>
</scene>
Expand Down
Expand Up @@ -12,6 +12,11 @@ import Foundation

class PayBillInterfaceController: WKInterfaceController {

@IBOutlet weak var balanceLabel: WKInterfaceLabel!
@IBOutlet weak var payBalanceButton: WKInterfaceButton!
@IBOutlet weak var minimumLabel: WKInterfaceLabel!
@IBOutlet weak var payMinimumButton: WKInterfaceButton!

override func awake(withContext context: Any?) {
super.awake(withContext: context)

Expand Down

0 comments on commit e8c3eb3

Please sign in to comment.