EXC_BAD_ACCESS code 2 on UIAlertView in iOS6

前端 未结 2 931
伪装坚强ぢ
伪装坚强ぢ 2020-12-13 13:43

I\'m trying to figure out why im getting this crash in my app.

It works perfectly fine in Xcode 4.4 running in the simulator with ios5.1, but when i switch into xcod

2条回答
  •  爱一瞬间的悲伤
    2020-12-13 13:53

    I've got it. I have the same problem, in my case it seems that the method is thrown from background now (now in ios7, in ios6 UIAlertView was automatically put into the main-thread as @nodepond says -thanks!-)..

    try to assure that the method is shown from main thread:

    [alertView performSelectorOnMainThread:@selector(show) withObject:nil waitUntilDone:YES];
    

    Good luck!

提交回复
热议问题