Skip to content

Instantly share code, notes, and snippets.

@muukii
Last active March 13, 2023 05:54
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muukii/bdfaf3db923db1287cff to your computer and use it in GitHub Desktop.
Save muukii/bdfaf3db923db1287cff to your computer and use it in GitHub Desktop.
Find UIView by AccessibilityIdentifier
extension UIView {
public class func findByAccessibilityIdentifier(identifier: String) -> UIView? {
guard let window = UIApplication.sharedApplication().keyWindow else {
return nil
}
func findByID(view: UIView, _ id: String) -> UIView? {
if view.accessibilityIdentifier == id { return view }
for v in view.subviews {
if let a = findByID(v, id) { return a }
}
return nil
}
return findByID(window, identifier)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment