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
2024-04-01 12:07:42 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a659124672e1ab87fafd968359a1b8f894c897b7
a6591246
1 parent
638ec996
fix couponset success popup action
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
SwiftWarplyFramework/SwiftWarplyFramework/CouponViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/CouponViewController.swift
View file @
a659124
...
...
@@ -362,7 +362,11 @@ import SwiftEventBus
switch
action
.
style
{
case
.
default
:
self
.
navigationController
?
.
popViewController
(
animated
:
true
)
SwiftEventBus
.
post
(
"open_my_rewards"
)
// SwiftEventBus.post("open_my_rewards")
let
storyboard
=
UIStoryboard
(
name
:
"Main"
,
bundle
:
Bundle
(
for
:
SwiftWarplyFramework
.
CouponsViewController
.
self
))
if
let
vc
=
storyboard
.
instantiateViewController
(
withIdentifier
:
"CouponsViewController"
)
as?
SwiftWarplyFramework
.
CouponsViewController
{
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
}
case
.
cancel
:
print
(
"cancel"
)
...
...
Please
register
or
login
to post a comment