forked from BitCoinONE1/trust-wallet-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Code cleaning. * Add transactions network. * Update of the transaction network manager. * Cleaning of the transaction coordinator. * Update of the view models. * Update of the coordinator. * Update of the transactions view model. * Update of the transactions view model add new realm object. * Code cleaning. * Code cleaning. * Add search controller. * Add predicate to filter transactions. * Add style for search controller. * Add send transaction method. * Add operation for transaction history. * Add operation start validation. * Add logic to handle first heavy load. * Update requested changes. * Set white background. * Fix typo. * Add one formatter for transaction view model. * Add guard statement.
- Loading branch information
1 parent
5795027
commit 5ef0156
Showing
21 changed files
with
556 additions
and
398 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,4 +138,4 @@ SPEC CHECKSUMS: | |
|
||
PODFILE CHECKSUM: 7f63b203f17be1b0e8a999203d365ef5b567e07b | ||
|
||
COCOAPODS: 1.4.0 | ||
COCOAPODS: 1.3.1 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Copyright SIX DAY LLC. All rights reserved. | ||
|
||
import UIKit | ||
|
||
class TrustOperation: Operation { | ||
|
||
private var _executing = false { | ||
willSet { | ||
willChangeValue(forKey: "isExecuting") | ||
} | ||
didSet { | ||
didChangeValue(forKey: "isExecuting") | ||
} | ||
} | ||
|
||
override var isExecuting: Bool { | ||
return _executing | ||
} | ||
|
||
private var _finished = false { | ||
willSet { | ||
willChangeValue(forKey: "isFinished") | ||
} | ||
|
||
didSet { | ||
didChangeValue(forKey: "isFinished") | ||
} | ||
} | ||
|
||
override var isFinished: Bool { | ||
return _finished | ||
} | ||
|
||
func executing(_ executing: Bool) { | ||
_executing = executing | ||
} | ||
|
||
func finish(_ finished: Bool) { | ||
_finished = finished | ||
} | ||
} |
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
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
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
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
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
Oops, something went wrong.