【发布时间】:2013-07-11 08:32:31
【问题描述】:
如何在代码中的某个点捕获对象的地址? 例如:
NSString * aString = @"bla bla";
//what is the current address of aString. i.e to which address in memory does it currently point to
aString = @"la la la";
//what is the current address of aString.
【问题讨论】:
标签: objective-c memory-management memory-address