Remove become and resign first responder code in Feeds and Timeline

This commit is contained in:
Maurice Parker 2019-09-03 20:39:00 -05:00
parent c487dfa709
commit 17a5d291f4
2 changed files with 0 additions and 12 deletions

View File

@ -62,14 +62,8 @@ class MasterFeedViewController: UITableViewController, UndoableCommandRunner {
override func viewDidAppear(_ animated: Bool) { override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated) super.viewDidAppear(animated)
becomeFirstResponder()
navigationController?.updateAccountRefreshProgressIndicator() navigationController?.updateAccountRefreshProgressIndicator()
} }
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
resignFirstResponder()
}
// MARK: Notifications // MARK: Notifications

View File

@ -75,15 +75,9 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
override func viewDidAppear(_ animated: Bool) { override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated) super.viewDidAppear(animated)
becomeFirstResponder()
updateProgressIndicatorIfNeeded() updateProgressIndicatorIfNeeded()
} }
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
resignFirstResponder()
}
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) { override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
super.traitCollectionDidChange(previousTraitCollection) super.traitCollectionDidChange(previousTraitCollection)