Manos Chorianopoulos

add CouponBarcodeVC logs

...@@ -43,7 +43,7 @@ import AVFoundation ...@@ -43,7 +43,7 @@ import AVFoundation
43 // Do any additional setup after loading the view. 43 // Do any additional setup after loading the view.
44 setBackButton() 44 setBackButton()
45 setNavigationTitle("Εκπτωτικό κουπόνι") 45 setNavigationTitle("Εκπτωτικό κουπόνι")
46 - 46 +
47 backgroundImage.image = UIImage(named: "coupons_scrollview_white", in: Bundle(for: MyEmptyClass.self), compatibleWith: nil) 47 backgroundImage.image = UIImage(named: "coupons_scrollview_white", in: Bundle(for: MyEmptyClass.self), compatibleWith: nil)
48 48
49 scrollView.clipsToBounds = true 49 scrollView.clipsToBounds = true
...@@ -91,6 +91,12 @@ import AVFoundation ...@@ -91,6 +91,12 @@ import AVFoundation
91 termsTextView.isScrollEnabled = false 91 termsTextView.isScrollEnabled = false
92 92
93 toggleTerms() 93 toggleTerms()
94 +
95 + // Logs
96 + print("Coupon: " + (coupon?.coupon ?? ""))
97 + print("Coupon Name: " + (couponSetData?.name ?? ""))
98 + print("Coupon Description: " + (couponSetData?.short_description ?? ""))
99 + print("Coupon Expiration: " + (coupon?.expiration ?? ""))
94 100
95 } 101 }
96 102
......