I have an MRC(Manual Reference Counting/non-ARC) project, and I have modified one class file to ARC compatible by adding "-fobjc-arc" compiler flag after these changes I'm getting an runtime error whenever I run the app like "message sent to deallocated instance crash"
If I remove the -fobjc-arc flag then my app works as expected, but with this flag it is throwing this run time exception. I did lot of googling, but of no luck. Any one faced this problem, any help is appreciated in advance.