Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SchemeUserState</key>
<dict>
<key>SwiftyBootpay-Example.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
</dict>
</dict>
</dict>
</plist>
Binary file not shown.
2 changes: 1 addition & 1 deletion SwiftyBootpay/Classes/BootpayController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ extension URL {
// @objc public var account_expire_at = "" // 가상계좌 입금 만료 기한
// @objc public var quotas = [0,2,3,4,5,6,7,8,9,10,11,12] // 할부 개월 수
var isPaying = false
@objc public var sendable: BootpayRequestProtocol?
@objc public weak var sendable: BootpayRequestProtocol?

internal var wv: BootpayWebView!
}
Expand Down
2 changes: 1 addition & 1 deletion SwiftyBootpay/Classes/BootpayWebView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import WebKit
final let BASE_URL = "https://inapp.bootpay.co.kr/3.0.4/production.html"
final let bridgeName = "Bootpay_iOS"
var firstLoad = false
var sendable: BootpayRequestProtocol?
weak var sendable: BootpayRequestProtocol?
var bootpayScript = ""
var parentController: BootpayController!
func bootpayRequest(_ script: String) {
Expand Down