Showing
5 changed files
with
6 additions
and
6 deletions
| ... | @@ -7,7 +7,7 @@ | ... | @@ -7,7 +7,7 @@ |
| 7 | <key>Pods-SwiftWarplyFramework.xcscheme_^#shared#^_</key> | 7 | <key>Pods-SwiftWarplyFramework.xcscheme_^#shared#^_</key> |
| 8 | <dict> | 8 | <dict> |
| 9 | <key>orderHint</key> | 9 | <key>orderHint</key> |
| 10 | - <integer>0</integer> | 10 | + <integer>1</integer> |
| 11 | </dict> | 11 | </dict> |
| 12 | </dict> | 12 | </dict> |
| 13 | </dict> | 13 | </dict> | ... | ... |
| ... | @@ -7,7 +7,7 @@ | ... | @@ -7,7 +7,7 @@ |
| 7 | <key>SwiftWarplyFramework.xcscheme_^#shared#^_</key> | 7 | <key>SwiftWarplyFramework.xcscheme_^#shared#^_</key> |
| 8 | <dict> | 8 | <dict> |
| 9 | <key>orderHint</key> | 9 | <key>orderHint</key> |
| 10 | - <integer>1</integer> | 10 | + <integer>0</integer> |
| 11 | </dict> | 11 | </dict> |
| 12 | </dict> | 12 | </dict> |
| 13 | </dict> | 13 | </dict> | ... | ... |
No preview for this file type
| ... | @@ -40,8 +40,8 @@ import SwiftEventBus | ... | @@ -40,8 +40,8 @@ import SwiftEventBus |
| 40 | 40 | ||
| 41 | SwiftEventBus.onBackgroundThread(self, name: "ccms_retrieved") { result in | 41 | SwiftEventBus.onBackgroundThread(self, name: "ccms_retrieved") { result in |
| 42 | print("===== SwiftEventBus ccms_retrieved =====") | 42 | print("===== SwiftEventBus ccms_retrieved =====") |
| 43 | - campaigns = swiftApi().mergeGFYCCMSLoyaltyCampaigns(campaigns: swiftApi().getCCMSLoyaltyCampaigns()) | 43 | + self.campaigns = swiftApi().mergeGFYCCMSLoyaltyCampaigns(campaigns: swiftApi().getCCMSLoyaltyCampaigns()) |
| 44 | - tableView.reloadData() | 44 | + self.tableView.reloadData() |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | tableView.clipsToBounds = true | 47 | tableView.clipsToBounds = true | ... | ... |
| ... | @@ -28,8 +28,8 @@ import UIKit | ... | @@ -28,8 +28,8 @@ import UIKit |
| 28 | 28 | ||
| 29 | SwiftEventBus.onBackgroundThread(self, name: "ccms_retrieved") { result in | 29 | SwiftEventBus.onBackgroundThread(self, name: "ccms_retrieved") { result in |
| 30 | print("===== SwiftEventBus ccms_retrieved =====") | 30 | print("===== SwiftEventBus ccms_retrieved =====") |
| 31 | - campaigns = swiftApi().mergeGFYCCMSLoyaltyCampaigns(campaigns: swiftApi().getCCMSLoyaltyCampaigns()) | 31 | + self.campaigns = swiftApi().mergeGFYCCMSLoyaltyCampaigns(campaigns: swiftApi().getCCMSLoyaltyCampaigns()) |
| 32 | - tableView.reloadData() | 32 | + self.tableView.reloadData() |
| 33 | } | 33 | } |
| 34 | 34 | ||
| 35 | tableView.clipsToBounds = true | 35 | tableView.clipsToBounds = true | ... | ... |
-
Please register or login to post a comment