-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash: [UIWindow selectedTextRange]: unrecognized selector #9
Comments
Ah, it wasn't a crash. I had a breakpoint set for all exceptions. So the bug is that the library sends selectedTextRange to all objects in the hierarchy without first checking if it responds to it. |
Thanks mate, I had the same problem. Like you said, removing "all exceptions" breakpoint fix it. |
I'm having the same problem here, absolutely no breakpoints set, yet it's crashing on me. I'm wondering if it's due to iOS6. I tried w/ older Xcode and 5.1 SDK and had a completely different crash. |
I ran into same problem. Andrew you are probably right. I just updated Xcode to iOS 6.1 SDK and had this problem. When I used view hierarchy a couple of months ago, it works fine as long as I turn breakpoint off. |
I have this problem too . any method to solve it without have to turn the breakpoint off ? |
I get a crash when I first load the viewer in my browser:
Things I have done:
-ObjC -all_load
to my linker flags. (I actually did-ObjC -force_load <path/to/lib.a>
, which should do the same thing.)Running on:
This is a fairly large project with a great deal of static libraries, so if this is not an obvious crash, I can try chopping thing off the project to see if it works.
It would be great if releases were tagged, that way I could try to debug this without having to build the library myself.
The text was updated successfully, but these errors were encountered: