Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2025-01-21 14:56:49 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9ceb02695b90d6ba790d82c3bc6e91d654cfb911
9ceb0269
1 parent
aeebabec
add merchant name to MarketAnalysisItemViewCell
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
SwiftWarplyFramework/SwiftWarplyFramework/MarketAnalysisItemViewCell.swift
SwiftWarplyFramework/SwiftWarplyFramework/MarketAnalysisItemViewCell.swift
View file @
9ceb026
...
...
@@ -96,7 +96,8 @@ extension MarketAnalysisItemViewCell {
priceString
=
String
(
format
:
"%.2f"
,
priceFloat
)
.
replacingOccurrences
(
of
:
"."
,
with
:
","
,
options
:
.
literal
,
range
:
nil
)
priceLabel
.
text
=
priceString
+
"€"
subtitleLabel
.
text
=
"Έκπτωτικό κουπόνι"
// TODO: FIX
// subtitleLabel.text = "Έκπτωτικό κουπόνι"
subtitleLabel
.
text
=
item
.
redeemed_merchant_details
?
.
_name
??
""
// subtitleLabel.text = couponSetData?.short_description ?? ""
// OR
// let htmlText = couponSetData?.inner_text ?? ""
...
...
@@ -141,7 +142,8 @@ extension MarketAnalysisItemViewCell {
priceString
=
String
(
format
:
"%.2f"
,
priceFloat
)
.
replacingOccurrences
(
of
:
"."
,
with
:
","
,
options
:
.
literal
,
range
:
nil
)
priceLabel
.
text
=
priceString
+
"€"
subtitleLabel
.
text
=
"Έκπτωτικό κουπόνι"
// subtitleLabel.text = "Έκπτωτικό κουπόνι"
subtitleLabel
.
text
=
item
.
redeemed_merchant_details
?
.
_name
??
""
// subtitleLabel.text = couponSetData?.short_description ?? ""
// OR
// let htmlText = couponSetData?.inner_text ?? ""
...
...
Please
register
or
login
to post a comment