Commit 41a6625f authored by Alex朱枝文's avatar Alex朱枝文

拼写错误修改

parent 58f312dc
......@@ -31,7 +31,7 @@ class YHLivePlayerViewController: YHBasePlayerViewController {
private lazy var inputVC: YHMessageInputViewController = {
let ctl = YHMessageInputViewController()
ctl.closeCallbcak = {
ctl.closeCallback = {
//
}
ctl.inputCallback = { [weak self] controller, text in
......
......@@ -22,7 +22,7 @@ class YHMessageInputViewController: UIViewController {
private let textViewMaxHeight: CGFloat = 54
var inputCallback: ((YHMessageInputViewController, String) -> Void)?
var closeCallbcak: (() -> Void)?
var closeCallback: (() -> Void)?
private lazy var inputMainView: UIView = {
let view = UIView(frame: CGRect(x: 0, y: 0, width: KScreenWidth, height: 54))
......@@ -183,7 +183,7 @@ extension YHMessageInputViewController {
}
self.textView.endEditing(true)
self.dismiss(animated: false) { [weak self] in
self?.closeCallbcak?()
self?.closeCallback?()
}
}
}
......
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