SIGABRT on any UIView touch

Posted by bitcruncher on Stack Overflow See other posts from Stack Overflow or by bitcruncher
Published on 2010-04-23T15:20:08Z Indexed on 2010/04/23 16:13 UTC
Read the original article Hit count: 346

Filed under:
|
|

Hi. I'm afraid no amount of Googling has been able to save my hyde on this. I seem to be getting SIGABRT error anytime I touch the screen of the phone, on any UIView. The debugger console posts this error before the SIGABRT:

.... [310:207] *** -[UIView _exclusiveTouchView]: unrecognized selector sent to instance 0x14c0c0
.... [310:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[UIView _exclusiveTouchView]: unrecognized selector sent to instance 0x14c0c0'

(this is not my specific call to _exclusiveTouchView, of course.)

I would gladly post some code, but the truth is I cannot find (or guess) where this problem may be coming from. This is not happening on any ONE UIView but on all the UIViews in my stack. I can summarize the display logic, though, perhaps that will shed some light.

So the application is created and a UIWindow is alloc'd. A single viewcontroller is then alloc'd, which makes and adds its own blank self.view, to which the other UIViews, representing the different game states, are attached.

Interestingly enough, this error is does NOT happen on the Simulator, but happens consistently on the device. And I should also mention that the application has yet to override/use any of the touchesBegan:/Ended:/Moved: etc... In other words, this error happens without these methods in the code.

I'm really not understanding where this error is coming from... Any suggestions?

© Stack Overflow or respective owner

Related posts about iphone

Related posts about uiview