1

I am not getting this crash on which line while run app in device. Its just displaying "[Not A Type retain]: message sent to deallocated instance 0x201ca7a0" in log. But the same build working fine in simulator.I have enabled zombies also. Please help ...

Jasarien
  • 58,279
  • 31
  • 157
  • 188

1 Answers1

0

You can disable ARC on your fileClass.m here my post how to:

Disable ARC

With ARC all obj is always RETAINED, so you can remove a part of code retain, and on the IBoutlet use like this: @property (nonatomic, strong) IBOutlet

Hope this help you

Community
  • 1
  • 1
BlackSheep
  • 1,087
  • 12
  • 29