I'm trying to adapt some old code that uses NSZoneMalloc. The project I'm using it in has ARC enabled which does not allow NSZoneMalloc.
The offending line of code is:
x = NSZoneMalloc([self zone], sizeof(*x));
Is there any equivalent code I can use with ARC to make the error go away? I don't really understand memory zoning to be honest. Let me know if this isn't enough info.
Thanks in advance
