Commit f3b40c71 authored by jz's avatar jz

update

parent 72822fd7
...@@ -16,16 +16,17 @@ import GMKit ...@@ -16,16 +16,17 @@ import GMKit
func didClickCommonAlert(buttonIndex: Int, alertView: GMCommonAlertView) func didClickCommonAlert(buttonIndex: Int, alertView: GMCommonAlertView)
} }
@objcMembers
public class GMCommonAlertView: GMView { public class GMCommonAlertView: GMView {
let alertView = GMView() public let alertView = GMView()
let titleLabel = GMLabel(textColor: UIColor.headlineText, fontSize: 16) public let titleLabel = GMLabel(textColor: UIColor.headlineText, fontSize: 16)
let subLabel = GMLabel(textColor: UIColor.auxiliaryTextLight, fontSize: 14) public let subLabel = GMLabel(textColor: UIColor.auxiliaryTextLight, fontSize: 14)
var button1 = GMGradualButton() public var button1 = GMGradualButton()
var button2: GMButton! public var button2: GMButton!
var button3: GMButton! public var button3: GMButton!
public weak var delegate: GMCommonAlertViewDelegate?
weak var delegate: GMCommonAlertViewDelegate?
override public func setup() { override public func setup() {
super.setup() super.setup()
setupSubviews() setupSubviews()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment