- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个非常奇怪的问题(好吧,对我来说),我快疯了!我有一个 View Controller (X) 子类,其中我需要了解有关当前用户位置的邮政编码(和其他信息)。这样看来我可以回去了;当我重新加载 X 时,有时会出现此错误:* -[CFString isEqual:]:发送到已释放实例 0x6660660 的消息
问题是由 placemark.postalCode 生成的,我不明白 placemark.postalCode 何时何地被释放。
这是我的 View Controller 的代码:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// reportsToUpdate = NO;
// locationValFound = NO;
NSLog(@"init city retain count %d", [city retainCount]);
}
return self;
}
- (void)dealloc
{
if(locationValFound)
NSLog(@"location found");
else NSLog(@"location not found");
EyesOnCityAppDelegate *appDelegate = (EyesOnCityAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate.downloadQueue cancelAllOperations];
[request clearDelegatesAndCancel];
[request release];
[reportsTableView release];
mapView.delegate = nil;
[mapView release];
mapView = nil;
if (reverseGeocoder) {
NSLog(@"reverseGeo dealloc");
[reverseGeocoder cancel];
}
reverseGeocoder.delegate = nil;
NSLog(@"Reverse geo delegate nil");
[reverseGeocoder release];
reverseGeocoder = nil;
[reportsArray removeAllObjects];
[reportsArray release];
[reportImagesArray removeAllObjects];
[reportImagesArray release];
[waitMessageLabel release];
[waitAI release];
[genericVal release];
[viewType release];
[idType release];
[typeName release];
[cap release];
NSLog(@"dealloc retain count %d", [city retainCount]);
[city release];
[super dealloc];
}
- (void) reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark {
//NSLog(@"placemark %@", placemark);
NSLog(@"reverse geocoder placemark.postalcode %p", placemark.postalCode);
NSLog(@"fuori cap address %p", &cap);
if (placemark && ![placemark.postalCode isEqual:@""] && ![placemark.locality isEqual:@""] && !locationValFound) {
locationValFound = YES;
cap = placemark.postalCode;
NSLog(@"dentro cap address %p", &cap);
NSLog(@"reverseGeo prima city retain count %d", [city retainCount]);
city = placemark.locality;
NSLog(@"reverseGeo dopo city retain count %d", [city retainCount]);
NSLog(@"Cap: %@", cap);
NSLog(@"City: %@", city);
mapView.delegate = nil;
[mapView release];
mapView = nil;
[reverseGeocoder placemark];
[self downloadReports];
}
}
- (void) mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation {
if (!locationValFound && ![reverseGeocoder isQuerying]) {
reverseGeocoder = [[MKReverseGeocoder alloc] initWithCoordinate:userLocation.coordinate];
reverseGeocoder.delegate = self;
[reverseGeocoder start];
NSLog(@"reverseGeocoder retain %d", [reverseGeocoder retainCount]);
}
}
- (void) reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error {
}
这是我用来加载 View Controller 的代码:
ReportsViewController *reportsViewController = [[ReportsViewController alloc] initWithNibName:@"ReportsViewController" bundle:nil];
// [reportsViewController setReportsToUpdate:NO];
[reportsViewController setTypeName:[[typesArray objectAtIndex:indexPath.row] name]];
[reportsViewController setGenericVal:[[typesArray objectAtIndex:indexPath.row] generic]];
[reportsViewController setViewType:[[typesArray objectAtIndex:indexPath.row] type]];
[reportsViewController setIdType:[[typesArray objectAtIndex:indexPath.row] idType]];
//} UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedStringFromTable(@"BackBtnText", @"EyesOnCity_localized", @"") 样式:UIBarButtonItemStylePlain 目标:nil 操作:nil]; self.navigationItem.backBarButtonItem = backButton; [后退按钮释放];
[self.navigationController pushViewController:reportsViewController animated:YES];
[tableView deselectRowAtIndexPath:indexPath animated:YES];
[reportsViewController release];
这些是输出中的一些行:
2011-09-14 19:01:21.097 eyesOnCity[1390:707] 反向地理编码器 placemark.postalcode 0x6660660
2011-09-14 19:01:21.099 eyesOnCity[1390:707] fuori 上限地址 0x663f29c
2011-09-14 19:01:21.101 eyesOnCity[1390:707] dentro 帽地址 0x663f29c
2011-09-14 19:01:21.104 eyesOnCity[1390:707] reverseGeo prima city 保留计数 0
2011-09-14 19:01:21.106 eyesOnCity[1390:707] reverseGeo dopo city 保留计数 3
2011-09-14 19:01:21.108 eyesOnCity[1390:707] 上限:12060
2011-09-14 19:01:21.110 eyesOnCity[1390:707] 城市:Niella Tanaro
2011-09-14 19:01:21.138 eyesOnCity[1390:707] 列表 ID:
2011-09-14 19:01:21.141 eyesOnCity[1390:707] lang: it_IT
2011-09-14 19:01:22.848 eyesOnCity[1390:707] 报告数量:7
2011-09-14 19:01:25.610 eyesOnCity[1390:707] 已找到位置
2011-09-14 19:01:25.614 eyesOnCity[1390:707] reverseGeo dealloc
2011-09-14 19:01:25.616 eyesOnCity[1390:707] 反向地理委托(delegate)为零
2011-09-14 19:01:25.622 eyesOnCity[1390:707] dealloc 保留计数 2
2011-09-14 19:01:25.626 eyesOnCity[1390:707] 报告单元格释放
2011-09-14 19:01:25.636 eyesOnCity[1390:707] 报告单元格释放
2011-09-14 19:01:25.648 eyesOnCity[1390:707] 报告单元格释放
2011-09-14 19:01:25.663 eyesOnCity[1390:707] 报告单元格释放
2011-09-14 19:01:28.450 eyesOnCity[1390:707] 初始化城市保留计数 0
2011-09-14 19:01:28.553 eyesOnCity[1390:707] 报告数量:0
2011-09-14 19:01:28.649 eyesOnCity[1390:707]reverseGeocoder 保留 2
2011-09-14 19:01:28.662 eyesOnCity[1390:707] 反向地理编码器 placemark.postalcode 0x6660660
2011-09-14 19:01:28.664 eyesOnCity[1390:707] fuori 上限地址 0x668d9bc
2011-09-14 19:01:28.666 eyesOnCity[1390:707] * -[CFString isEqual:]:发送到已释放实例 0x6660660 的消息
注意地址 0x6660660:重新加载 View Controller 后的相同地址
有什么想法吗?
<小时/>我的问题是:如果在 didFindPlacemark 中地标对象是我从反向Geocoder 对象(每次加载 View Controller 时都是一个新对象)收到的对象,那么 placemark.postalCode 怎么可能被释放?我真的不明白我的代码有什么问题!而且内存管理看起来不错!
最佳答案
NSLog(@"reverseGeo prima city retain count %d", [city retainCount]);
请不要这样做。不要使用retainCount
。不要依赖 retainCount
。不要靠近retainCount
。
retainCount
并没有像你想象的那样做。这是苹果公司的相关文档(重点是我的):
This method is typically of no value in debugging memory management issues. Because any number of framework objects may have retained an object in order to hold references to it, while at the same time autorelease pools may be holding any number of deferred releases on an object, it is very unlikely that you can get useful information from this method
世界上最好的事情就是苹果更多地弃用它。它导致了很多很多问题 - 只需看看这些问题:
...这里有大量代表(在一种情况下,78k)的人说 retainCount
毫无值(value)。忽略那些说有用的人。事实并非如此。毫无疑问,有人会对此发表评论说,实际上,retainCount 完全可以使用。他们错了。苹果的文档说不要用它来调试。这里很多聪明人都说不要用它来调试。使用它是一个坏主意。
调试过度释放的内存问题(大概是这里发生的情况)的最佳方法是确保遵循 memory management rules 。这并不能特别帮助您解决实际问题,尽管浏览了您发布的代码后,我不确定问题是否立即显而易见(尽管它也不是 View Controller 的完整代码)。
Apple 提供了许多有用的工具来调试内存问题,包括构建和分析 (clang) 以及对象分配工具。使用它们比使用它们更好。
关于iphone - 重新加载 ViewController 后释放 placemark.postalCode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7428160/
我有一个附加了 View Controller 的 AVAudioPlayer 实例。 @property (nonatomic, retain) AVAudioPlayer *previewAudi
我是java初学者。假设我声明了一个 Account 类型的变量 Account _account = new Account("Thomas"); 然后在其他地方我做了这样的事情: _account
我在我的应用程序中使用了 3 个 UIViewController,现在我想知道当我从另一个应用程序切换到另一个 UIViewController 时释放它们是否是一个好主意。显然,这将是隐藏的,当它
我分配了一个直接缓冲区: ByteBuffer directBuffer = ByteBuffer.allocateDirect(1024); 我读过: Deallocating Direct Buf
场景。我有一个图表,我可以使用右键单击来执行平移。这非常有效。然后我完美地添加了右键菜单。 问题。现在,即使在拖动操作完成后释放鼠标,也会显示右键菜单。 有没有办法在 Java Swing 或 Jav
我使用此代码获取 ABPerson 的姓氏 CFStringRef lastNameRef = ABRecordCopyValue((ABRecordRef)personRecordRef, kABP
目前,我们在基于 C 的嵌入式应用程序中使用 malloc/free Linux 命令进行内存分配/取消分配。我听说这会导致内存碎片,因为内存分配/取消分配会导致堆大小增加/减少,从而导致性能下降。其
当我尝试释放缓冲区时遇到问题。每次我尝试将缓冲区传递给释放方法时,都会发生段错误。 Valgrind 确认段错误位于 BufferDeallocate 方法中。 ==30960== Memcheck,
我想知道何时按下或释放修改后的键(Ctrl 或 Shift)。 基本上,用户可以在按下修改键的情况下执行多次击键,而我不想在它被释放之前执行一个操作(想想 Emacs 和 Ctrl + X + S).
我编写了一个相当大的网络应用程序。它运行良好一段时间,然后慢慢开始运行缓慢,因为 DOM 节点开始爬升到 80,000 - 100,000 左右。 所以我一直在 Chrome 开发工具控制台 (DCT
我知道在像 c 这样的语言中,我需要在分配内存后释放它。 (我来自 Java),对此我有几个问题: 当我在做的时候: int array[30]; (即创建一个大小为 30 个整数的数组)与
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: How to release pointer from boost::shared_ptr? Detach
我有一个可以从多个后台线程访问的类,可能同时访问。我无法复制该类,因为重新创建它的内容(处理或内存方面)可能很昂贵。 也有可能在后台处理仍在继续并访问该属性时替换了此类的属性。 目前我有定期的保留/释
这个问题是对: 的扩展链接-1:Creating an image out of the ios surface and saving it Link-2:Taking Screenshots fro
我有一个实例变量 NSMutableArray* searchResults。 首先,我初始化它: self.searchResults = [[NSMutableArray alloc] init]
如果我在堆上声明一些东西,比如 char *a=new char[1000] 并且主程序停止,如果没有 delete[]<,那么分配的内存会发生什么 调用?它保留在堆上还是自动释放? 最佳答案 就C+
在开发相机应用时,我遇到了一个异常,该异常仅在我切换到其他应用时发生(onPause() 用于我的应用)。 01-15 17:22:15.017: E/AndroidRuntime(14336): F
使用 JDK 1.8 编译时出现 maven 编译器错误 无法执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (de
将 BufferedImage 保存到磁盘(以释放内存)的最快方法是什么? 我的 Java 应用程序处理大量图像(每约 300 毫秒将图像加载到内存中)。大多数这些图像都会立即被丢弃 (gc),但每隔
使用 JDK 1.8 编译时出现 maven 编译器错误 未能在项目 DUMMY 上执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:
我是一名优秀的程序员,十分优秀!