Showing
1 changed file
with
2 additions
and
1 deletions
| ... | @@ -49,7 +49,8 @@ import UIKit | ... | @@ -49,7 +49,8 @@ import UIKit |
| 49 | couponImageHeight.constant = self.uiscreen.height * 0.25 | 49 | couponImageHeight.constant = self.uiscreen.height * 0.25 |
| 50 | 50 | ||
| 51 | nameLabel.text = couponset?.name ?? "" | 51 | nameLabel.text = couponset?.name ?? "" |
| 52 | - descriptionLabel.text = couponset?.short_description ?? "" | 52 | + let htmlDescrText = couponset?.description ?? "" |
| 53 | + descriptionLabel.text = htmlDescrText.htmlToString | ||
| 53 | 54 | ||
| 54 | redeemButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Medium", size: 16) | 55 | redeemButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Medium", size: 16) |
| 55 | redeemButton.setTitle("Απόκτησέ το", for: .normal) | 56 | redeemButton.setTitle("Απόκτησέ το", for: .normal) | ... | ... |
-
Please register or login to post a comment