I converted my huge IOS program to ARC using xcode auto conversion. After that I am getting the following error: [CFString retain]: message sent to deallocated instance
imagePath is probably a __unsafe_unretained iVar (or maybe you're seeing weak or assign). Change it to strong so that it is retained by ARC.
imagePath
__unsafe_unretained
weak
assign
strong