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:48 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
45896989c6b35c0953612cf8a3fb8a655be067e5
45896989
1 parent
786f44d6
fix back btn action issue
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
SwiftWarplyFramework/SwiftWarplyFramework/CouponViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/MapsViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/ShareViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/ViewControllerExtensions.swift
SwiftWarplyFramework/SwiftWarplyFramework/WalletViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/CouponViewController.swift
View file @
4589698
...
...
@@ -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 @
4589698
...
...
@@ -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 @
4589698
...
...
@@ -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/ViewControllerExtensions.swift
View file @
4589698
...
...
@@ -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 @
4589698
...
...
@@ -543,7 +543,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"
)
...
...
Please
register
or
login
to post a comment