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:04:56 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
651e073fcdf0de0ffb0fbbbf00ae671cd0403752
651e073f
1 parent
a107e79f
fix back button action issue
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
8 additions
and
8 deletions
SwiftWarplyFramework/Pods/Pods.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
SwiftWarplyFramework/SwiftWarplyFramework.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
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/Pods/Pods.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
651e073
...
...
@@ -7,7 +7,7 @@
<key>
Pods-SwiftWarplyFramework.xcscheme_^#shared#^_
</key>
<dict>
<key>
orderHint
</key>
<integer>
0
</integer>
<integer>
1
</integer>
</dict>
</dict>
</dict>
...
...
SwiftWarplyFramework/SwiftWarplyFramework.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
651e073
...
...
@@ -7,7 +7,7 @@
<key>
SwiftWarplyFramework.xcscheme_^#shared#^_
</key>
<dict>
<key>
orderHint
</key>
<integer>
1
</integer>
<integer>
0
</integer>
</dict>
</dict>
</dict>
...
...
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
View file @
651e073
No preview for this file type
SwiftWarplyFramework/SwiftWarplyFramework/CouponViewController.swift
View file @
651e073
...
...
@@ -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 @
651e073
...
...
@@ -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 @
651e073
...
...
@@ -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 @
651e073
...
...
@@ -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 @
651e073
...
...
@@ -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 @
651e073
...
...
@@ -557,7 +557,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