To help ensure your Lists are accessible to as many users as possible, please be sure to review the following recommendations:
-isAccessibilityElementIt is generally recommended to set UICollectionViewCells (and UITableViewCells) as accessibilityElements. That way, VoiceOver doesn't traverse the entire cell and articulate an overwhelming amount of accessibility information for each of its subviews.
cell.isAccessibilityElement = true
cell.isAccessibilityElement = YES;