objective c - Seeing where ARC is inserting retain and releases -
objective c - Seeing where ARC is inserting retain and releases -
is there compiler alternative (or other way) see arc inserting retain , releases? out of curiosity. can see them in disassembly code, that's hard wade through sometimes.
no. if compiler provide this, you'd absolutely overwhelmed number of retains/releases, since of them taken out during optimization stage. compiler can't that, because arc isn't pre-processing stage. it's part of compilation. you're not going able besides looking @ assembly.
objective-c automatic-ref-counting
Comments
Post a Comment