Conseguir intermitentes excepciones extrañas “selectores” no reconocido en aplicación para el iPhone

StackOverflow https://stackoverflow.com/questions/3738689

Pregunta

Recientemente, he estado recibiendo informes de errores intermitentes de mi aplicación alegando "selector no reconocido" en áreas que no podrían causar posiblemente ellos, y sin embargo lo hacen.

Por ejemplo, ésta:

Error: NSInvalidArgumentException: *** -[NSCFString didReceiveMemoryWarning]: unrecognized selector sent to instance 0x541fe0
0  CoreFoundation                      0x32de1e23 __handleUncaughtException + 230
1  libobjc.A.dylib                    0x3266d894 _objc_terminate + 156
2  libstdc++.6.dylib                  0x338c3a8c _ZN10__cxxabiv111__terminateEPFvvE + 84
3  libstdc++.6.dylib                  0x338c3b04 _ZSt9terminatev + 24
4  libstdc++.6.dylib                  0x338c3c2c __cxa_throw + 108
5  libobjc.A.dylib                    0x3266be5c objc_exception_throw + 112
6  CoreFoundation                      0x32de2bfd -[NSObject doesNotRecognizeSelector:] + 112
7  CoreFoundation                      0x32d67b19 ___forwarding___ + 480
8  CoreFoundation                      0x32d5e840 _CF_forwarding_prep_0 + 48
9  Foundation                          0x33f765d9 _nsnote_callback + 184
10  CoreFoundation                      0x32d9e511 _CFXNotificationPostNotification + 304
11  Foundation                          0x33f741b3 -[NSNotificationCenter postNotificationName:object:userInfo:] + 70
12  Foundation                          0x33f76519 -[NSNotificationCenter postNotificationName:object:] + 20
13  UIKit                              0x30d18db8 -[UIApplication _performMemoryWarning] + 68
14  UIKit                              0x30d18d50 -[UIApplication _receivedMemoryNotification] + 136
15  UIKit                              0x30d18c80 _memoryStatusChanged + 64
16  CoreFoundation                      0x32d66eb7 __CFNotificationCenterDarwinCallBack + 26
17  CoreFoundation                      0x32d5cb51 __CFMachPortPerform + 78
18  CoreFoundation                      0x32da452b CFRunLoopRunSpecific + 2302
19  CoreFoundation                      0x32da3c1f CFRunLoopRunInMode + 50
20  GraphicsServices                    0x31bb9374 GSEventRunModal + 196
21  UIKit                              0x30bf3c30 -[UIApplication _run] + 560
22  UIKit                              0x30bf2230 UIApplicationMain + 968
23  Mind                                0x00002c68 main + 72
24  Mind                                0x00002be4 start + 52

Este es el envío de un aviso de memoria para mi aplicación OS, y de alguna manera la clase de aplicación se ha transformado en una cadena.

Parece ocurrir mucho más cuando el código se invoca a través de un NSOperation:

Error: NSInvalidArgumentException: -[NSCFString setObject:forKey:]: unrecognized selector sent to instance 0x3e793088
9  Mind                                0x0015de70 -[CCTextureCache textureFromFile:] + 528
10  Mind                                0x0015d9f4 -[CCTextureCache loadImageUncached:pixelFormat:] + 116
11  Mind                                0x0015d058 -[CCTextureCache addImage:pixelFormat:] + 152
12  Mind                                0x00080524 -[ImageLoader imageWithFile:pixelFormat:] + 84
13  Mind                                0x000854c4 -[ImageLoadOperation performLoad] + 68
14  Mind                                0x00085800 -[ResourceLoadOperation main] + 112
15  Foundation                          0x30c4c8b5 -[__NSOperationInternal start] + 664
16  Foundation                          0x30c4c613 -[NSOperation start] + 22
17  Foundation                          0x30cbdb63 ____startOperations_block_invoke_2 + 46
18  libSystem.B.dylib                  0x31227858 _dispatch_call_block_and_release + 20
19  libSystem.B.dylib                  0x3122863c _dispatch_worker_thread2 + 128
20  libSystem.B.dylib                  0x311b1544 _pthread_wqthread + 400
21  libSystem.B.dylib                  0x311a8b74 __stack_chk_fail + 4294967295

El código en cuestión es:

[texturas setObject: Textura forKey: nombre de archivo];

texturas es de tipo NSMutableDictionary * y nunca se reasigna o desasignado (de forma natural, ya que este es un objeto de caché). Este es el único lugar donde setObject se invoca en este método, sin embargo, de acuerdo con el seguimiento de la pila, texturas era una cadena.

También conseguir esta rareza:

Error: NSInvalidArgumentException: -[NSConcreteNotification getPixelFormatForIdentifier:]: unrecognized selector sent to instance 0x5c021b0
9  Mind                                0x0015dd0c -[CCTextureCache textureFromFile:] + 172
10  Mind                                0x0015d9f4 -[CCTextureCache loadImageUncached:pixelFormat:] + 116
11  Mind                                0x0015d058 -[CCTextureCache addImage:pixelFormat:] + 152
12  Mind                                0x00080524 -[ImageLoader imageWithFile:pixelFormat:] + 84
13  Mind                                0x000854c4 -[ImageLoadOperation performLoad] + 68
14  Mind                                0x00085800 -[ResourceLoadOperation main] + 112
15  Foundation                          0x347b78b5 -[__NSOperationInternal start] + 664
16  Foundation                          0x347b7613 -[NSOperation start] + 22
17  Foundation                          0x34828b63 ____startOperations_block_invoke_2 + 46
18  libSystem.B.dylib                  0x32a2f858 _dispatch_call_block_and_release + 20
19  libSystem.B.dylib                  0x32a3063c _dispatch_worker_thread2 + 128
20  libSystem.B.dylib                  0x329b9544 _pthread_wqthread + 400
21  libSystem.B.dylib                  0x329b0b74 __stack_chk_fail + 4294967295

Esta traza es del siguiente código en CCTextureCache:

CCTexture2DPixelFormat PixelFormat = [auto getPixelFormatForIdentifier: identificador];

¿Cómo CCTextureCache transformó en NSConcreteNotification después de haber llamado ya una serie de métodos en sí es desconcertante por decir lo menos.

¿Alguien más ha notado este tipo de cosas? ¿Estoy recibiendo alguna forma de corrupción de memoria?

¿Fue útil?

Solución

¿Ha comprobado algunas condiciones de carrera sobre los multi-hilos? Parece que algunos de los recursos liberados por otro hilo, y el hilo actual enviar un contactado a un objeto desasignado.

Error: NSInvalidArgumentException: -[NSCFString setObject:forKey:]: unrecognized selector sent to instance 0x3e793088
9  Mind                                0x0015de70 -[CCTextureCache textureFromFile:] + 528
10  Mind                                0x0015d9f4 -[CCTextureCache loadImageUncached:pixelFormat:] + 116
11  Mind                                0x0015d058 -[CCTextureCache addImage:pixelFormat:] + 152
12  Mind                                0x00080524 -[ImageLoader imageWithFile:pixelFormat:] + 84
13  Mind                                0x000854c4 -[ImageLoadOperation performLoad] + 68
14  Mind                                0x00085800 -[ResourceLoadOperation main] + 112
15  Foundation                          0x30c4c8b5 -[__NSOperationInternal start] + 664
16  Foundation                          0x30c4c613 -[NSOperation start] + 22
17  Foundation                          0x30cbdb63 ____startOperations_block_invoke_2 + 46
18  libSystem.B.dylib                  0x31227858 _dispatch_call_block_and_release + 20
19  libSystem.B.dylib                  0x3122863c _dispatch_worker_thread2 + 128
20  libSystem.B.dylib                  0x311b1544 _pthread_wqthread + 400
21  libSystem.B.dylib                  0x311a8b74 __stack_chk_fail + 4294967295

Otros consejos

Esto es a menudo causada por errores de administración de memoria. ¿Usted intentó zombis ?

... de zombies habilitadas, los mensajes a los objetos desasignado ya no se comportan extraña o estrellarse en difíciles de entender las formas, sino que en su lugar registrar un mensaje y morir de una manera predecible y depurador-breakpointable. Esta es la herramienta a utilizar cuando se trata de localizar a más de prensa y comunicados prematuros.

Me acabo de encontrar con el mismo problema, pero resulta que yo había cometido un error estúpido:

Me había declarado un miembro como este en el archivo de cabecera:

NSMutableDictionary* myDict; 

Pero entonces inicializado así en el archivo .m:

myDict = [[NSDictionary alloc] init];

que es válido y todo, porque el NSMutableDictionary se deriva de la clase NSDictionary. Por lo tanto, todas las llamadas que se heredan de NSDictionary efectivamente trabajado, pero las llamadas específicas a NSMutableDictionary [setObject: forKey:]. Fracasado porque traté de invocarlos en la clase padre

El error fue muy tonto, pero también fue echado fuera por el hecho de que el depurador informa del tipo de myDict como algo totalmente diferente (ni NSDictionary, ni NSMutableDictionary). Espero que esto ayude algún otro codificador cansada: -)

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top