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
2022-07-05 11:05:11 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7072d94bd3c30e16748e48626cb234e364716df5
7072d94b
1 parent
1a8981f4
add CouponBarcodeVC logs
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
SwiftWarplyFramework/SwiftWarplyFramework/CouponBarcodeViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/CouponBarcodeViewController.swift
View file @
7072d94
...
...
@@ -43,7 +43,7 @@ import AVFoundation
// Do any additional setup after loading the view.
setBackButton
()
setNavigationTitle
(
"Εκπτωτικό κουπόνι"
)
backgroundImage
.
image
=
UIImage
(
named
:
"coupons_scrollview_white"
,
in
:
Bundle
(
for
:
MyEmptyClass
.
self
),
compatibleWith
:
nil
)
scrollView
.
clipsToBounds
=
true
...
...
@@ -91,6 +91,12 @@ import AVFoundation
termsTextView
.
isScrollEnabled
=
false
toggleTerms
()
// Logs
print
(
"Coupon: "
+
(
coupon
?
.
coupon
??
""
))
print
(
"Coupon Name: "
+
(
couponSetData
?
.
name
??
""
))
print
(
"Coupon Description: "
+
(
couponSetData
?
.
short_description
??
""
))
print
(
"Coupon Expiration: "
+
(
coupon
?
.
expiration
??
""
))
}
...
...
Please
register
or
login
to post a comment