Has anyone else encountered this? Specifically with an iPhone 6 running iOS 10.0 I'm getting consistent reports of the following crashing:
if #available(iOS 10.0, *) {
UISelectionFeedbackGenerator()
}
Where it's not even being used, just created and it causes an EXC_BAD_ACCESS
crash. The docs say it just fails silently if the device doesn't support it. Oddly enough if I change the check to iOS 10.0.1
it works fine.
Am I doing something wrong?