摘要: 第一种情况这种问题一般就是变量申请了内存并初始化了,但没有使用此变量,接着将此变量又重新赋值。如下:NSString *imageString = [[NSString alloc] init]; imageString = @"HResout"; 第二种情况测出的问题提示是Incorrect decrement of the reference count of an object that is not owned at this point by the caller问题出现在这一行[self.tableViewinitWithFrame:self.view.boun 阅读全文
posted @ 2013-02-04 15:19 ygm900 阅读(2733) 评论(0) 推荐(1) 编辑