Manos Chorianopoulos

refactor WalletVC v2

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