LoginSignup
12
13

More than 5 years have passed since last update.

ARC環境でリファレンスカウントをログ表示するマクロ

Last updated at Posted at 2012-11-07

ARC環境下ではretainCount メソッドは使えないのでCFGetRetainCountを使いますが、面倒なのでマクロにしてみました。

#define LogReferenceCount(obj) NSLog(@"[%@] reference count = %ld", [obj class], CFGetRetainCount((__bridge void*)obj))

12
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
13