Aquí está el error que estoy recibiendoNSNotification EXC_BAD_ACCESS
Thread 1:EXC_BAD_ACCESS (code=2, address=0xb7ffffc)
En esta línea
[[NSNotificationCenter defaultCenter] postNotificationName:AsyncImageLoadDidFinish
object:target
userInfo:[[userInfo copy] autorelease]];
En el archivo AsyncImageView.m.
El error detiene el código, pero si continúo en el depurador, congela Xcode y lo apaga. ¿Cómo puedo solucionar este problema?
¿Cómo se declaran 'userInfo'? – Kjuly
'\t \t NSMutableDictionary * userInfo = [dictionaryWithObjectsAndKeys NSMutableDictionary: \t \t \t \t \t \t \t \t \t \t imagen, AsyncImageImageKey, \t \t \t \t \t \t \t \t \t \t URL, AsyncImageURLKey, \t \t \t \t \t \t \t \t \t \t nil]; ' – BigT