Showing
2 changed files
with
4 additions
and
2 deletions
No preview for this file type
| ... | @@ -263,8 +263,10 @@ import SwiftEventBus | ... | @@ -263,8 +263,10 @@ import SwiftEventBus |
| 263 | SwiftEventBus.post("analysis_pressed", sender: dealsAnalysis) | 263 | SwiftEventBus.post("analysis_pressed", sender: dealsAnalysis) |
| 264 | } | 264 | } |
| 265 | @IBAction func couponEarnButtonAction(_ sender: Any) { | 265 | @IBAction func couponEarnButtonAction(_ sender: Any) { |
| 266 | - // TODO: couponEarnButtonAction | 266 | + |
| 267 | - print("couponEarnButtonAction Tapped!") | 267 | + let storyboard = UIStoryboard(name: "Main", bundle: Bundle(for: MyEmptyClass.self)) |
| 268 | + let vc = storyboard.instantiateViewController(withIdentifier: "LoyaltyAnalysisViewController") as! SwiftWarplyFramework.LoyaltyAnalysisViewController | ||
| 269 | + self.navigationController?.pushViewController(vc, animated: true) | ||
| 268 | } | 270 | } |
| 269 | 271 | ||
| 270 | } | 272 | } | ... | ... |
-
Please register or login to post a comment