UIViewController 的默认描述中的数值是多少?我曾期望它是实例地址,或者可能是哈希,但是当我测试这个理论时,这就是我得到的:
NSLog(@"Self [%@]", self);
NSLog(@"Address [%p]", &self);
NSLog(@"Hash [%d]", [self hash]);
2012-09-26 10:28:00.202 QuickList7[85957:c07] Self [<SelectCategoryViewController: 0xa42fc60>]
2012-09-26 10:28:00.202 QuickList7[85957:c07] Address [0xbfffdea8]
2012-09-26 10:28:00.203 QuickList7[85957:c07] Hash [172162144]
我无法在 UIViewController 或其超类的参考资料中找到解释——有人知道吗?