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-10-16 17:28:44 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9a8e25b59ba4600e762bd80d287c2733fd760d22
9a8e25b5
1 parent
e651e1f3
fix presentInfoPopup func
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
SwiftWarplyFramework/SwiftWarplyFramework/UnifiedCouponsViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/UnifiedCouponsViewController.swift
View file @
9a8e25b
...
...
@@ -181,8 +181,8 @@ import SwiftEventBus
}
private
func
presentInfoPopup
()
{
let
storyboard
=
UIStoryboard
(
name
:
"Main"
,
bundle
:
nil
)
if
let
popupVC
=
storyboard
.
instantiateViewController
(
withIdentifier
:
"PopupInfoViewController"
)
as?
PopupInfoViewController
{
let
storyboard
=
UIStoryboard
(
name
:
"Main"
,
bundle
:
Bundle
(
for
:
MyEmptyClass
.
self
)
)
if
let
popupVC
=
storyboard
.
instantiateViewController
(
withIdentifier
:
"PopupInfoViewController"
)
as?
SwiftWarplyFramework
.
PopupInfoViewController
{
popupVC
.
modalPresentationStyle
=
.
overCurrentContext
popupVC
.
modalTransitionStyle
=
.
crossDissolve
self
.
present
(
popupVC
,
animated
:
true
,
completion
:
nil
)
...
...
Please
register
or
login
to post a comment