corin8823 / Popover

Popover is a balloon library like Facebook app. It is written in pure swift.
MIT License
2.11k stars 327 forks source link

Added accessibility support #42

Closed Legoless closed 8 years ago

Legoless commented 8 years ago

This PR adds accessibility support, so the popover acts like a modal screen when used with assistive technologies. After the modal is dismissed, a notification must be sent to accessibility system, to correctly place the assistive cursor:

UIAccessibilityPostNotification(UIAccessibilityLayoutChangedNotification, nil)

corin8823 commented 8 years ago

Thanks! nice PR.