Showing
2 changed files
with
4 additions
and
2 deletions
| ... | @@ -3253,7 +3253,7 @@ | ... | @@ -3253,7 +3253,7 @@ |
| 3253 | </constraints> | 3253 | </constraints> |
| 3254 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="15"/> | 3254 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="15"/> |
| 3255 | <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="5" maxY="0.0"/> | 3255 | <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="5" maxY="0.0"/> |
| 3256 | - <state key="normal" title="Εμφάνιση κουπονιών" image="ic_down_dark"> | 3256 | + <state key="normal" title="Εμφάνιση προσφορών" image="ic_down_dark"> |
| 3257 | <color key="titleColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 3257 | <color key="titleColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
| 3258 | <preferredSymbolConfiguration key="preferredSymbolConfiguration"/> | 3258 | <preferredSymbolConfiguration key="preferredSymbolConfiguration"/> |
| 3259 | </state> | 3259 | </state> | ... | ... |
| ... | @@ -102,7 +102,7 @@ import AVFoundation | ... | @@ -102,7 +102,7 @@ import AVFoundation |
| 102 | 102 | ||
| 103 | showCouponsButton.titleLabel?.font = UIFont(name: "PeridotPE-Bold", size: 15) | 103 | showCouponsButton.titleLabel?.font = UIFont(name: "PeridotPE-Bold", size: 15) |
| 104 | // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5) | 104 | // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5) |
| 105 | - showCouponsButton.setTitle("Εμφάνιση κουπονιών", for: .normal) | 105 | + showCouponsButton.setTitle("Εμφάνιση προσφορών", for: .normal) |
| 106 | showCouponsButton.setTitleColor(UIColor(red: 0.13, green: 0.13, blue: 0.13, alpha: 1.00), for: .normal) | 106 | showCouponsButton.setTitleColor(UIColor(red: 0.13, green: 0.13, blue: 0.13, alpha: 1.00), for: .normal) |
| 107 | showCouponsButton.setImage(UIImage(named: "ic_down_dark_2.png", in: MyEmptyClass.resourceBundle(), compatibleWith: nil), for: .normal) | 107 | showCouponsButton.setImage(UIImage(named: "ic_down_dark_2.png", in: MyEmptyClass.resourceBundle(), compatibleWith: nil), for: .normal) |
| 108 | showCouponsButton.semanticContentAttribute = .forceRightToLeft | 108 | showCouponsButton.semanticContentAttribute = .forceRightToLeft |
| ... | @@ -272,8 +272,10 @@ import AVFoundation | ... | @@ -272,8 +272,10 @@ import AVFoundation |
| 272 | 272 | ||
| 273 | func toggleCoupons(couponsVisible: Bool) { | 273 | func toggleCoupons(couponsVisible: Bool) { |
| 274 | if (couponsVisible) { | 274 | if (couponsVisible) { |
| 275 | + showCouponsButton.setTitle("Απόκρυψη προσφορών", for: .normal) | ||
| 275 | showCouponsButton.setImage(UIImage(named: "ic_up_dark_2.png", in: MyEmptyClass.resourceBundle(), compatibleWith: nil), for: .normal) | 276 | showCouponsButton.setImage(UIImage(named: "ic_up_dark_2.png", in: MyEmptyClass.resourceBundle(), compatibleWith: nil), for: .normal) |
| 276 | } else { | 277 | } else { |
| 278 | + showCouponsButton.setTitle("Εμφάνιση προσφορών", for: .normal) | ||
| 277 | showCouponsButton.setImage(UIImage(named: "ic_down_dark_2.png", in: MyEmptyClass.resourceBundle(), compatibleWith: nil), for: .normal) | 279 | showCouponsButton.setImage(UIImage(named: "ic_down_dark_2.png", in: MyEmptyClass.resourceBundle(), compatibleWith: nil), for: .normal) |
| 278 | } | 280 | } |
| 279 | } | 281 | } | ... | ... |
-
Please register or login to post a comment