0

I am new to iphone development and working on universal app, I just created some new fields on View and set its outlets with code in xCode 4.2. Than I compile and this error came, do not know how to get rid of this error.

I also deleted some references to Xib fields.

How to know where is the buggy code or error.

please help

enter image description here

Edit: I just Add Exception breakpoint in Breakpoint navigator and it showed this place of error.

enter image description here

Azhar
  • 20,500
  • 38
  • 146
  • 211

6 Answers6

1

its an Application crash which may be due to wrong referencing. Follow this link, it will help you to get the error place.

Community
  • 1
  • 1
Azhar
  • 20,500
  • 38
  • 146
  • 211
0

a SIGABRT error means one of MANY things. I'd recommend implimenting break points on all exceptions, as detailed in this article

Janak Nirmal
  • 22,706
  • 18
  • 63
  • 99
WhoaItsAFactorial
  • 3,538
  • 4
  • 28
  • 45
0

It can be that you send message to deallocated object. more likely you released your controls or views before viewDidUnload, or it can be that you using some properties or methods of viewController that had removed from window. There are plenty cases for this error.

Mitrodan
  • 73
  • 4
0

If there is no window appeared before you get the exception then check out your xib connections.

V-Xtreme
  • 7,230
  • 9
  • 39
  • 79
0

That is not an Error, its crash your application when u run this app. Make sure that your all connection are proper or u use undefined symbol in your app.

Shashi Sharma
  • 126
  • 1
  • 11
0

You can refer to this very good article. Read it out, it will be helpful in the future.

This is a fantastic link, goto section "The Exception Breakpoint". This will answer your question.

My app crashed, Now what?

Ravi Raman
  • 1,070
  • 9
  • 16