Is there something wrong with the application?
Who can tell me to explore the analysis or to expand about the exception?
I tried dwarfdump, but this is no more detail.
dwarfdump -arch ARMv7 MyApp.app.dSYM --lookup 0x000034b3 tell me
line table file: 'main.m' line 14, column started with the address 18 0x00000000000034aa that
int retVal = UIApplicationMain (argc, argv, zero , Zero); The stack trace
- [UIApplication applicationWillTerminate:]: unrecognized selector sent to instance 0x27eed0 (zero) (0 CoreFoundation 0x30df964f __exceptionPreprocess + 114 1 libobjc.A.dylib 0x34914c5d objc_exception_throw + 24 2 CoreFoundation 0x30dfd1bf - [NSObject (NSObject) doesNotRecognizeSelector:] 102 3 CoreFoundation 0x30dfc649 ___forwarding___ + 508 4 CoreFoundation 0x30d73180 _CF_forwarding_prep_0 + 48 5 CommonTools 0x089e441f - [ButtonEventOpt onProcClickEvent: state: frame: ViewControl: ] + 1662 6 CommonTools 0x089ead37 - [CommonToolsView onClickBtnEvent:] + 366 7 Korfoundeshn 0x30d69571 - [NSObject (NSObject) Performers: Sathvigyapan: Sathwastvik:] + 24 8 UIKit 0x30e77ec9 - [UIApplication sendAc tion: to: from: forEvent:] + 84 9 UIKit 0x30e77e69 - [UIApplication sendAction: toTarget: fromSender: forEvent:] + 32 10 UIKit 0x30e77e3b - [UIControl sendAction: To: forEvent:] 38 11 UIKit 0x30e77b8d - [UIControl (internal) _sendActionsForEvents: withEvent:] 356 12 UIKit 0x30e78423 - [UIControl touchesEnded: withEvent:] 342 13 UIKit 0x30e5d535 _UIGestureRecognizerSortAndSendDelayedTouches + 2200 14 UIKit 0x30e5cc01 _UIGestureRecognizerUpdateObserver + 696 15 CoreFoundation 0x30dd0a35 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 16 16 CoreFoundation 0x30dd2465 __CFRunLoopDoObservers + 412 17 CoreFoundation 0x30dd375b __CFRunLoopRun + 854 18 CoreFoundation 0x30d63ec3 CFRunLoopRunSpecific + 230 19 CoreFoundation 0x30d63dcb CFRunLoopRunInMode + 58 20 0x306e241f GSEventRunModal + 114 21 GraphicsServices 0x306e24cb GSEventRun GraphicsServices + 62 22 UIKit 0x30e89d69 - [UIApplication _run] 404 23 UIKit 0x30e87807 UIApplicationMain + 67 0 24 MyApp 0x000034b3 MyApp + 9395 25 MyApp 0x0000346c MyApp + 9324)
There ApplicationWillTerminate Errors are not there, when you receive an unresolved error, the application usually ends here. / P>
You should have got some details in the production log, to be your main error is that you think a selector is not supported by the class on which you called:
In the stack, you can see that many calls have been made, but only two of them are from their class (i think , Because I do not know these people): 5 CommonTo ols 0x089e441f - [ButtonEventOpt onProcClickEvent: State: Frame: viewControl:] 1662 6 CommonTools 0x089ead37 - [CommonToolsView onClickBtnEvent:] 366 Check your production log, if there about your method calls There are more information that is throwing the error.
Comments
Post a Comment