Commit 1daaf8c8 authored by zhangzhe's avatar zhangzhe

修改bug

parent 6f7db351
......@@ -64,7 +64,7 @@ class SHInputAudioPlayView: UIView {
// 播放速度按钮
self.speedButton = UIButton(type: .system)
self.speedButton.setTitle("x1.5", for: .normal)
self.speedButton.setTitle("x1", for: .normal)
self.speedButton.setTitleColor(UIColor(r: 65, g: 131, b: 244), for: .normal)
self.speedButton.titleLabel?.font = UIFont(name: SHPingFangMedium, size: 14)
self.addSubview(self.speedButton)
......
......@@ -198,7 +198,7 @@ class SHInputBottomView: UIView {
// 箭头图片
self.directionImageView = UIImageView()
self.directionImageView.image = UIImage(named: "input_down")
self.directionImageView.image = UIImage(named: "input_up")
self.addSubview(self.directionImageView)
self.directionImageView.isHidden = self.isEdited
......
......@@ -103,7 +103,7 @@ class SHInputView: UIView {
// MARK: 监听键盘出现
@objc func keyboardWillShow(note : Notification)
{
self.bottomView.directionImageView.image = UIImage(named: "input_up")
self.bottomView.directionImageView.image = UIImage(named: "input_down")
let info : Dictionary = note.userInfo! as Dictionary
let value = info[UIResponder.keyboardFrameEndUserInfoKey]
......@@ -132,7 +132,7 @@ class SHInputView: UIView {
// MARK: 监听键盘消失
@objc func keyboardWillHide(note : Notification)
{
self.bottomView.directionImageView.image = UIImage(named: "input_down")
self.bottomView.directionImageView.image = UIImage(named: "input_up")
weak var weakSelf = self
......
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