Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Created PaymentOptions interface and controller for selecting payment…
… type. Fetching bank account info and populating table with it. Updated getbankacctinfo request to grab the bank name and last 4 digits of bank account.
  • Loading branch information
rrk12005 committed Apr 5, 2019
1 parent 4aa6841 commit 63bb56b
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
@@ -0,0 +1,9 @@
//
// BankAcctCell.swift
// SynchronyFinancial WatchKit Extension
//
// Created by Rahul Kantesaria on 4/5/19.
// Copyright © 2019 Alan Maynard. All rights reserved.
//
import Foundation
@@ -0,0 +1,30 @@
//
// BankSelectionInterfaceController.swift
// SynchronyFinancial WatchKit Extension
//
// Created by Rahul Kantesaria on 4/5/19.
// Copyright © 2019 Alan Maynard. All rights reserved.
//
import WatchKit
import Foundation

class BankSelectionInterfaceController: WKInterfaceController {


override func awake(withContext context: Any?) {

}

override func willActivate() {
// This method is called when watch view controller is about to be visible to user
super.willActivate()
}

override func didDeactivate() {
// This method is called when watch view controller is no longer visible
super.didDeactivate()
}


}

0 comments on commit 63bb56b

Please sign in to comment.