Skip to content

Instantly share code, notes, and snippets.

@evermeer
Created June 1, 2018 14:14
Show Gist options
  • Save evermeer/114f292622f813b5c50675c2b5624f07 to your computer and use it in GitHub Desktop.
Save evermeer/114f292622f813b5c50675c2b5624f07 to your computer and use it in GitHub Desktop.
Code block 3 for UITest medium blog
infix operator ~~>
public extension UIView {
static func ~~> <T>(lhs: UIView, rhs: T) where T: RawRepresentable {
if let rv = rhs.rawValue as? String {
lhs.accessibilityIdentifier = rv
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment