Manos Chorianopoulos

refactor WalletVC v2

This diff could not be displayed because it is too large.
...@@ -41,6 +41,8 @@ class UnifiedCouponsTableViewCell: UITableViewCell { ...@@ -41,6 +41,8 @@ class UnifiedCouponsTableViewCell: UITableViewCell {
41 // Initialization code 41 // Initialization code
42 42
43 couponBgImage.image = UIImage(named: "coupon_bg", in: MyEmptyClass.resourceBundle(), compatibleWith: nil) 43 couponBgImage.image = UIImage(named: "coupon_bg", in: MyEmptyClass.resourceBundle(), compatibleWith: nil)
44 + couponImage.image = UIImage(named: "coupon_market", in: MyEmptyClass.resourceBundle(), compatibleWith: nil)
45 +
44 46
45 borderView.addDashedBorderVertical(color: UIColor(red: 0.44, green: 0.44, blue: 0.44, alpha: 1.00), width: 1.0, height: 110.0) 47 borderView.addDashedBorderVertical(color: UIColor(red: 0.44, green: 0.44, blue: 0.44, alpha: 1.00), width: 1.0, height: 110.0)
46 } 48 }
...@@ -73,7 +75,7 @@ class UnifiedCouponsTableViewCell: UITableViewCell { ...@@ -73,7 +75,7 @@ class UnifiedCouponsTableViewCell: UITableViewCell {
73 for merchant in merchantList { 75 for merchant in merchantList {
74 if (merchant._uuid == couponSetData?.merchant_uuid) { 76 if (merchant._uuid == couponSetData?.merchant_uuid) {
75 // couponImage.load(link: merchant._img_preview, placeholder: UIImage(), cache: URLCache()) 77 // couponImage.load(link: merchant._img_preview, placeholder: UIImage(), cache: URLCache())
76 - self.postImageURL = merchant._img_preview 78 +// self.postImageURL = merchant._img_preview
77 nameLabel.text = merchant._admin_name 79 nameLabel.text = merchant._admin_name
78 break; 80 break;
79 } 81 }
......