Skip to content

Instantly share code, notes, and snippets.

@mntone
Created February 6, 2019 18:44
Show Gist options
  • Select an option

  • Save mntone/322a2c608a409a7dda6b58780203b348 to your computer and use it in GitHub Desktop.

Select an option

Save mntone/322a2c608a409a7dda6b58780203b348 to your computer and use it in GitHub Desktop.
掃き溜めとして置いておきます
import UIKit
extension UIResponder {
public func find<T: UIResponder>() -> T? {
if let nextResponder = self.next {
if let nextResponder = nextResponder as? T {
return nextResponder
} else {
return nextResponder.find()
}
}
return nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment