Skip to content

Remove become first responder from message view #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
8 changes: 0 additions & 8 deletions MessageViewController/MessageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,6 @@ public final class MessageView: UIView, MessageTextViewListener {
button.imageEdgeInsets = .zero

updateEmptyTextStates()

let tap = UITapGestureRecognizer(target: self, action: #selector(becomeFirstResponder))
tap.cancelsTouchesInView = false
addGestureRecognizer(tap)
}

public required init?(coder aDecoder: NSCoder) {
Expand Down Expand Up @@ -202,10 +198,6 @@ public final class MessageView: UIView, MessageTextViewListener {
return textView.resignFirstResponder()
}

public override func becomeFirstResponder() -> Bool {
return textView.becomeFirstResponder()
}

// MARK: Private API

internal var height: CGFloat {
Expand Down