-
Notifications
You must be signed in to change notification settings - Fork 427
[NSProxy doesNotRecognizeSelector:_accessibilityValueForKey:] #42
Comments
Does this error triggers while performing UI Testing? |
No this was in my crashlytics crash logs. I'm guessing someone had accessibility enabled? |
Yeah, possibly. I've never looked deep into accessibility features. I'd really like to move away from the |
right, so i've started setting stuff in viewWillAppear and unsetting it in viewDidDisappear with much better behaviour, and no more crashes ;) |
@skela Thanks for your input! I'll remove the erroneous comment, I hope you don't mind. |
@skela I'm facing the same issues in my app, so could you tell me what exactly are you setting and unsetting in viewWillAppear and viewDidDisappear? shyNavBarManager.scrollView = collectionView
shyNavBarManager.extensionView = header
shyNavBarManager.stickyExtensionView = true |
@yuriferretti-luizalabs Hey, how about you try to implement |
I'm afraid of implementing this method because it's certainly a private API and apple could reject applications using it. Correct me if I'm wrong |
@yuriferretti-luizalabs you're absolutely right, however I was under the impression it only happens on the simulator because of #34. You can surround it with macros |
@Mazyod it's happening to me in production code since crashlytics reported some crashes to me. I will dig deeper when this accessibity method is called to find a solution. |
@yuriferretti-luizalabs Got it, thanks. That hack won't do then... Thanks for looking into it, I'm doing some preliminary research, but nothing is coming up. |
I don't use the stickyExtension stuff, all I do is:
|
@skela thanks! I'll try it |
@skela when doing that my extension view ignores |
@yuriferretti-luizalabs I would look into yer own class / view controller if that is the case, as I don't see why that should come from shy nav bar ;) |
@yuriferretti-luizalabs another thing worth mentioning is that my view controller is a UIViewController subclass, not a UITableViewController or UICollectionViewController. As far as I remember, there were some issues when using the UITableViewController / UICollectionViewController classes. |
The text was updated successfully, but these errors were encountered: