I am having some trouble with VoiceOver turned on starting in iOS 7. I did register an instance of UITableViewHeaderFooterView
child class inside viewDidLoad
but when I am dequeque-ing it with -[tableView dequeueReusableHeaderFooterViewWithIdentifier:]
it is always returning nil
object.
The issue started to appear on iOS 7.0. It was not there on the previous version and certainly it works fine if it runs perfectly without VoiceOver on both 6.0 and 7.0
I could just not having a custom header instead, or instantiate a new object when dequeueReusableHeaderFooterViewWithIdentifier:
returns nil. But I was wondering whether there is a known issue regarding this.
Cheers,