ios - Getting signal sigabrt exception, cant find the error -


so im getting strange sigabrt exception, added exception breakpoint , line i'm getting exception on this:

[self performseguewithidentifier: @"solvesound" sender: self]; 

and can't understand why throw exception, made connection (segue ) next view , named solvesound.

if anymore code needed tell me.

2013-05-19 23:02:30.785 game[17957:c07] -[soundviewcontroller _setviewdelegate:]: unrecognized selector sent instance 0x8253a50 2013-05-19 23:02:36.382 game[17957:c07] * terminating app due uncaught exception 'nsinvalidargumentexception', reason: '-[soundviewcontroller _setviewdelegate:]: unrecognized selector sent instance 0x8253a50' * first throw call stack: (0x15c4012 0x13e9e7e 0x164f4bd 0x15b3bbc 0x15b394e 0x412f7c 0x40f440 0xe175be 0xe170e7 0xe41b58 0x54b019 0x13fd663 0x15bf45a 0x549b1c 0x40e7e7 0x40edc8 0x40eff8 0x40f232 0x40f4da 0x4268e5 0x4269cb 0x426c76 0x426d71 0x42789b 0x427e93 0xe9d83f7 0x427a88 0x783e63 0x775b99 0x40fdd2 0xe9d012c 0x4b53 0x3dd285 0x3dd4ed 0xde75b3 0x1583376 0x1582e06 0x156aa82 0x1569f44 0x1569e1b 0x24107e3 0x2410668 0x32dffc 0x262d 0x2555) libc++abi.dylib: terminate called throwing exception (lldb)

by way i'm getting in output.

edit:added soundviewcontroller code:

@interface soundviewcontroller ()  @end  @implementation soundviewcontroller {     sounditem *currentsound; }  - (void)viewdidload {     [super viewdidload];     // additional setup after loading view.   } - (void)viewwillappear:(bool)animated {     [super viewwillappear:animated];      [self.answertextfield becomefirstresponder]; }  - (bool)textfield:(uitextfield *)thetextfield shouldchangecharactersinrange:(nsrange)range replacementstring:(nsstring *)string {     nsstring *newtext = [thetextfield.text stringbyreplacingcharactersinrange:range withstring:string];     if ([newtext length] > 0) {         self.checkbutton.enabled = yes;     } else {         self.checkbutton.enabled = no;     }     return yes; }  - (void)didreceivememorywarning {     [super didreceivememorywarning];     // dispose of resources can recreated. }   @end 

edit:added stack trace

2013-05-19 23:42:33.900 game[18590:c07] stack trace: (     0   corefoundation                      0x015c402e __exceptionpreprocess + 206     1   libobjc.a.dylib                     0x013e9e7e objc_exception_throw + 44     2   corefoundation                      0x0164f4bd -[nsobject(nsobject) doesnotrecognizeselector:] + 253     3   corefoundation                      0x015b3bbc ___forwarding___ + 588     4   corefoundation                      0x015b394e _cf_forwarding_prep_0 + 14     5   uikit                               0x00412f7c +[uiviewcontroller setviewcontroller:forview:] + 40     6   uikit                               0x0040f440 -[uiviewcontroller setview:] + 521     7   foundation                          0x00e175be _nssetusingkeyvaluesetter + 82     8   foundation                          0x00e170e7 -[nsobject(nskeyvaluecoding) setvalue:forkey:] + 267     9   foundation                          0x00e41b58 -[nsobject(nskeyvaluecoding) setvalue:forkeypath:] + 412     10  uikit                               0x0054b019 -[uiruntimeoutletconnection connect] + 106     11  libobjc.a.dylib                     0x013fd663 -[nsobject performselector:] + 62     12  corefoundation                      0x015bf45a -[nsarray makeobjectsperformselector:] + 314     13  uikit                               0x00549b1c -[uinib instantiatewithowner:options:] + 1327     14  uikit                               0x0040e7e7 -[uiviewcontroller _loadviewfromnibnamed:bundle:] + 280     15  uikit                               0x0040edc8 -[uiviewcontroller loadview] + 302     16  uikit                               0x0040eff8 -[uiviewcontroller loadviewifrequired] + 73     17  uikit                               0x0040f232 -[uiviewcontroller view] + 33     18  uikit                               0x0040f4da -[uiviewcontroller contentscrollview] + 36     19  uikit                               0x004268e5 -[uinavigationcontroller _computeandapplyscrollcontentinsetdeltaforviewcontroller:] + 36     20  uikit                               0x004269cb -[uinavigationcontroller _layoutviewcontroller:] + 43     21  uikit                               0x00426c76 -[uinavigationcontroller _updatescrollviewfromviewcontroller:toviewcontroller:] + 254     22  uikit                               0x00426d71 -[uinavigationcontroller _starttransition:fromviewcontroller:toviewcontroller:] + 72     23  uikit                               0x0042789b -[uinavigationcontroller _startdeferredtransitionifneeded:] + 386     24  uikit                               0x00427e93 -[uinavigationcontroller pushviewcontroller:transition:forceimmediate:] + 1030     25  uikit                               0x0ab343f7 -[uinavigationcontrolleraccessibility(safecategory) pushviewcontroller:transition:forceimmediate:] + 71     26  uikit                               0x00427a88 -[uinavigationcontroller pushviewcontroller:animated:] + 62     27  uikit                               0x00783e63 -[uistoryboardpushsegue perform] + 1111     28  uikit                               0x00775b99 -[uistoryboardseguetemplate _perform:] + 174     29  uikit                               0x0040fdd2 -[uiviewcontroller performseguewithidentifier:sender:] + 72     30  uikit                               0x0ab2c12c -[uiviewcontrolleraccessibility(safecategory) performseguewithidentifier:sender:] + 63     31  game                                0x00004e63 -[picksoundviewcontroller tableview:didselectrowatindexpath:] + 339     32  uikit                               0x003dd285 -[uitableview _selectrowatindexpath:animated:scrollposition:notifydelegate:] + 1194     33  uikit                               0x003dd4ed -[uitableview _userselectrowatpendingselectionindexpath:] + 201     34  foundation                          0x00de75b3 __nsfiredelayedperform + 380     35  corefoundation                      0x01583376 __cfrunloop_is_calling_out_to_a_timer_callback_function__ + 22     36  corefoundation                      0x01582e06 __cfrunloopdotimer + 534     37  corefoundation                      0x0156aa82 __cfrunlooprun + 1810     38  corefoundation                      0x01569f44 cfrunlooprunspecific + 276     39  corefoundation                      0x01569e1b cfrunloopruninmode + 123     40  graphicsservices                    0x024107e3 gseventrunmodal + 88     41  graphicsservices                    0x02410668 gseventrun + 104     42  uikit                               0x0032dffc uiapplicationmain + 1211     43  game                                0x00002824 main + 164     44  game                                0x00002735 start + 53 ) 


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -