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
2023-10-30 11:06:02 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ebf3359392dd22fa24704a6e285d77bbbb2105ac
ebf33593
1 parent
cf05acf0
fix back btn action issue
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
SwiftWarplyFramework/SwiftWarplyFramework/CouponViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/MapsViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/ShareViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/UnifiedCouponBarcodeViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/ViewControllerExtensions.swift
SwiftWarplyFramework/SwiftWarplyFramework/WalletViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/CouponViewController.swift
View file @
ebf3359
...
...
@@ -161,7 +161,7 @@ import SwiftEventBus
switch
action
.
style
{
case
.
default
:
self
.
navigationController
?
.
popViewController
(
animated
:
true
)
self
.
dismiss
(
animated
:
true
,
completion
:
{})
//
self.dismiss(animated: true, completion: {})
case
.
cancel
:
print
(
"cancel"
)
...
...
SwiftWarplyFramework/SwiftWarplyFramework/MapsViewController.swift
View file @
ebf3359
...
...
@@ -193,7 +193,7 @@ import MapKit
switch
action
.
style
{
case
.
default
:
self
.
navigationController
?
.
popViewController
(
animated
:
true
)
self
.
dismiss
(
animated
:
true
,
completion
:
{})
//
self.dismiss(animated: true, completion: {})
case
.
cancel
:
print
(
"cancel"
)
...
...
SwiftWarplyFramework/SwiftWarplyFramework/ShareViewController.swift
View file @
ebf3359
...
...
@@ -218,7 +218,7 @@ import SwiftEventBus
switch
action
.
style
{
case
.
default
:
self
.
navigationController
?
.
popViewController
(
animated
:
true
)
self
.
dismiss
(
animated
:
true
,
completion
:
{})
//
self.dismiss(animated: true, completion: {})
case
.
cancel
:
print
(
"cancel"
)
...
...
SwiftWarplyFramework/SwiftWarplyFramework/UnifiedCouponBarcodeViewController.swift
View file @
ebf3359
...
...
@@ -102,7 +102,7 @@ import SwiftEventBus
case
.
default
:
SwiftEventBus
.
post
(
"refresh_unified_coupons"
)
self
.
navigationController
?
.
popViewController
(
animated
:
true
)
self
.
dismiss
(
animated
:
true
,
completion
:
{})
//
self.dismiss(animated: true, completion: {})
case
.
cancel
:
print
(
"cancel"
)
...
...
SwiftWarplyFramework/SwiftWarplyFramework/ViewControllerExtensions.swift
View file @
ebf3359
...
...
@@ -90,7 +90,7 @@ extension UIViewController {
@objc
func
moveToBack
(
_
sender
:
UIButton
){
self
.
navigationController
?
.
popViewController
(
animated
:
true
)
self
.
dismiss
(
animated
:
true
,
completion
:
{})
//
self.dismiss(animated: true, completion: {})
}
func
addNavShadow
()
{
...
...
SwiftWarplyFramework/SwiftWarplyFramework/WalletViewController.swift
View file @
ebf3359
...
...
@@ -603,7 +603,7 @@ import SwiftEventBus
switch
action
.
style
{
case
.
default
:
self
.
navigationController
?
.
popViewController
(
animated
:
true
)
self
.
dismiss
(
animated
:
true
,
completion
:
{})
//
self.dismiss(animated: true, completion: {})
case
.
cancel
:
print
(
"cancel"
)
...
...
@@ -625,7 +625,7 @@ import SwiftEventBus
// self.handleSpinnerAndEmptyView()
// self.tableView.reloadData()
self
.
navigationController
?
.
popViewController
(
animated
:
true
)
self
.
dismiss
(
animated
:
true
,
completion
:
{})
//
self.dismiss(animated: true, completion: {})
case
.
cancel
:
print
(
"cancel"
)
...
...
Please
register
or
login
to post a comment