Skip to content

Commit 8f19f1f

Browse files
author
ehowlsla
committed
Object C Support
1 parent 1b39d77 commit 8f19f1f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

SwiftyBootpay.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'SwiftyBootpay'
11-
s.version = '2.1.16'
11+
s.version = '2.1.17'
1212
s.summary = 'PG Plugin For Swift'
1313

1414
# This description is used to generate tags and improve search results.

SwiftyBootpay/Classes/BootpayAnalytics.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public class BootpayAnalytics: NSObject {
8383
@objc public static let sharedInstance = BootpayAnalytics()
8484
var application_id = ""
8585
public var uuid = ""
86-
let ver = "2.1.16"
86+
let ver = "2.1.17"
8787
var sk = ""
8888
var sk_time = 0 // session 유지시간 기본 30분
8989
var last_time = 0 // 접속 종료 시간

SwiftyBootpay/Classes/BootpayWebView.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import WebKit
1111
//import CryptoSwift
1212

1313
@objc public protocol BootpayRequestProtocol {
14-
func onError(data: [String: Any])
15-
func onReady(data: [String: Any])
16-
func onClose()
17-
func onConfirm(data: [String: Any])
18-
func onCancel(data: [String: Any])
19-
func onDone(data: [String: Any])
14+
@objc(onError:) func onError(data: [String: Any])
15+
@objc(onReady:) func onReady(data: [String: Any])
16+
@objc func onClose()
17+
@objc(onConfirm:) func onConfirm(data: [String: Any])
18+
@objc(onCancel:) func onCancel(data: [String: Any])
19+
@objc(onDone:) func onDone(data: [String: Any])
2020
}
2121

2222
class BootpayWebView: UIView {

0 commit comments

Comments
 (0)