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
2022-06-21 17:36:53 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f253fed56bdce3d46245ca70d4263c7ee7b78169
f253fed5
1 parent
5dcc65db
openQuestionnaire, consumerIntegration additions
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletions
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.m
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
View file @
f253fed
No preview for this file type
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.m
View file @
f253fed
...
...
@@ -1059,6 +1059,8 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
{
NSMutableDictionary
*
data
=
[[
NSMutableDictionary
alloc
]
init
];
[
data
setValue
:
@"consumer_extra_data"
forKey
:
@"method"
];
if
(
nonTelco
&&
!
[
nonTelco
isEqual
:
@NO
])
{
[
data
setValue
:
nonTelco
forKey
:
@"nonTelco"
];
}
else
{
...
...
SwiftWarplyFramework/SwiftWarplyFramework/swiftApi.swift
View file @
f253fed
...
...
@@ -1490,7 +1490,8 @@ public class swiftApi {
if
(
item
.
offer_category
==
"questionnaire"
)
{
let
storyboard
=
UIStoryboard
(
name
:
"Main"
,
bundle
:
Bundle
(
for
:
MyEmptyClass
.
self
))
let
vc
=
storyboard
.
instantiateViewController
(
withIdentifier
:
"CampaignViewController"
)
as!
CampaignViewController
vc
.
campaignUrl
=
item
.
index_url
??
""
let
url
=
swiftApi
()
.
constructCampaignUrl
(
item
)
vc
.
campaignUrl
=
url
controller
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
break
;
}
...
...
Please
register
or
login
to post a comment