-
Notifications
You must be signed in to change notification settings - Fork 0
+416
−17
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Collaborator
ahm11003
commented
Mar 18, 2019
- Set up account table to hold the user's different accounts
- Set up account details screen to display total balance, available balance, next payment due date, etc
- made `Account.swift` target iOS and watchOS projects
- created function to populate with “dummy” accounts - created function to configure each row in table - implemented `contextForSegue` function to allow us to “pass” the selected account to the next interface controller
- change how we get the account before it is passed to account details - wrote methods to set up account details screen with the account object that is received
ahm11003
commented
Mar 18, 2019
|
||
private func populateDemoData() { | ||
//swiftlint:disable line_length | ||
accounts.append(Account(accountNumber: "TD Bank", limit: 500.00, transactions: [], paymentDueDate: Date(), cycleEndDate: Date())) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These accounts were created for illustrative purposes, and once we get actual accounts from synchrony's mock environment these can be safely removed
- `TransactionsInterfactController` will hold a table of recent transactions - `TransactionCell` provides a model for our table cell
- Added TransactionsInterfaceController - In order to have a page based navigation allowing swipe between Account Details and Transactions, it was necessary to change the segue from the Accounts Table to “modal” type
- As a result of the change to modal presentation, the function we must override has changed - Instead of returning the context for the next interface controller, we return an array of contexts, each corresponding to the interface controllers in the order they appear in the navigation stack (Account details is first, transactions is now second) - once web service is set up, transactions should be passed to TransactionsInterfactController from this function
looks good |
rrk12005
approved these changes
Mar 26, 2019
Swf 11 recent transactions
Sign in
to join this conversation on GitHub.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.