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-27 17:08:53 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
018dc3202637811866529040dd98d3ea4fa0b0fd
018dc320
1 parent
586ef4da
add WarplyDealsAnalysisEvent at wallet
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
SwiftWarplyFramework/SwiftWarplyFramework/WalletViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/WalletViewController.swift
View file @
018dc32
...
...
@@ -7,6 +7,7 @@
import
Foundation
import
UIKit
import
SwiftEventBus
@objc
public
class
WalletViewController
:
UIViewController
{
@IBOutlet
weak
var
headerImage
:
UIImageView
!
...
...
@@ -161,8 +162,10 @@ import UIKit
}
@IBAction
func
dfyEarnButtonAction
(
_
sender
:
Any
)
{
// TODO: dfyEarnButtonAction
print
(
"dfyEarnButtonAction Tapped!"
)
// analysis_pressed event
let
dealsAnalysis
=
swiftApi
.
WarplyDealsAnalysisEventModel
()
dealsAnalysis
.
_isPressed
=
true
SwiftEventBus
.
post
(
"analysis_pressed"
,
sender
:
dealsAnalysis
)
}
@IBAction
func
couponEarnButtonAction
(
_
sender
:
Any
)
{
// TODO: couponEarnButtonAction
...
...
Please
register
or
login
to post a comment