Last active
January 4, 2019 10:11
-
-
Save mecid/f90ad3f1c5dcbee24d71b04116147ec5 to your computer and use it in GitHub Desktop.
saccessibility1.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol UIAccessibility: AnyObject { | |
var isAccessibilityElement: Bool { get set } | |
var accessibilityTraits: UIAccessibilityTraits { get set } | |
var accessibilityLabel: String? { get set } | |
var accessibilityValue: String? { get set } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment