Home > Mobile >  How to see the ARC compiled code?
How to see the ARC compiled code?

Time:09-27

Clang - rewrite - objc this command you can see the compiled code, but apparently not release and retain the ARC automatically add these method calls,
Want to do so would like to see these method calls should be how to do?

CodePudding user response:

Use this command clang - rewrite - objc - fobjc - arc, but you will find no release and retain related calls; But there are __strong __weak modifiers, such as actually see them you can guess, further the generated c + + source file to you compile (note that is not language and language conversion between, will increase the release and retain method calls,
  •  Tags:  
  • iOS
  • Related