Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
mash3l777 committed Mar 4, 2021
1 parent d4c9cd9 commit a1c4b78
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Sources/MCaptchaView/MCaptchaView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import UIKit
public class MCaptchaView: UIView {

// Verification font code
var _captchaFont: UIFont?
var captchaFont: UIFont? {
public var _captchaFont: UIFont?
public var captchaFont: UIFont? {
get {
_captchaFont
}
Expand All @@ -21,11 +21,11 @@ public class MCaptchaView: UIView {
}

// MARK:-Verification code
var captcha: String?
public var captcha: String?

// Verification code update block
var captchaCompletionBlock: ((_ captcha: String?) -> Void)?
var codeList: [AnyHashable]?
public var captchaCompletionBlock: ((_ captcha: String?) -> Void)?
public var codeList: [AnyHashable]?

public override init(frame: CGRect) {
super.init(frame: frame)
Expand Down

0 comments on commit a1c4b78

Please sign in to comment.