- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我使用 CocoaTouch 和 ARC native 构建的应用程序在取消分配 UIView 子类实例时崩溃。
这是崩溃日志。
OS Version: iOS 6.1.3 (10B329)
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00000008
Crashed Thread: 0
0: 0x39de65b0 libobjc.A.dylib objc_msgSend + 16
1: 0x31edb694 CoreFoundation -[NSArray makeObjectsPerformSelector:] + 300
2: 0x33d8c57a UIKit -[UIView(UIViewGestures) removeAllGestureRecognizers] + 146
3: 0x33d8c144 UIKit -[UIView dealloc] + 440
4: 0x00240b36 MyApp -[StandardPanelView .cxx_destruct](self=0x20acba30, _cmd=0x00240985) + 434 at StandardPanelView.m:139
5: 0x39deaf3c libobjc.A.dylib object_cxxDestructFromClass(objc_object*, objc_class*) + 56
6: 0x39de80d2 libobjc.A.dylib objc_destructInstance + 34
7: 0x39de83a6 libobjc.A.dylib object_dispose + 14
8: 0x33d8c26a UIKit -[UIView dealloc] + 734
9: 0x0022aa14 MyApp -[StandardPanelView dealloc](self=0x20acba30, _cmd=0x379f1a66) + 156 at StandardPanelView.m:205
10: 0x39de8488 libobjc.A.dylib (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 168
11: 0x31e98440 CoreFoundation _CFAutoreleasePoolPop + 16
12: 0x31f28f40 CoreFoundation __CFRunLoopRun + 1296
13: 0x31e9bebc CoreFoundation CFRunLoopRunSpecific + 356
14: 0x31e9bd48 CoreFoundation CFRunLoopRunInMode + 104
15: 0x35a502ea GraphicsServices GSEventRunModal + 74
16: 0x33db1300 UIKit UIApplicationMain + 1120
17: 0x00113c50 MyApp main(argc=1, argv=0x2fd3ed30) + 140 at main.m:23
问题是:
一些额外的背景信息:
提前感谢您提供有关此崩溃如何发生的任何提示。
最佳答案
我的第一印象是您可能正在尝试访问刚刚解除分配的 StandardPanelView。
- What could be set wrong that makes the internal call to [UIView(UIViewGestures) removeAllGestureRecognizers] crash. One theory is that some gesture in the gestures array is deallocated already somewhere else.
这不会是因为 UIGestureRecognizer 被释放了。 UIView 强烈地将 UIGestureRecognizers 保存在 NSArray 中。当它们仍在数组中时,它们不会被释放。
但是,UIGestureRecognizer 的委托(delegate) 可能已被释放。这只是一个(分配)属性,意味着它不是强持有的,如果委托(delegate)被释放,它将成为一个悬空指针。因此,如果在 [NSArray makeObjectsPerformSelector:]
中使用了委托(delegate),则可能会发生这种情况。
- When a UIView contains subviews, how is the sequence of deallocation process?
对象从“ parent ”释放到“ child ”,即。 super View 被释放,然后是 subview ,然后是手势识别器。 (虽然 subview 是否在手势识别器之前被释放是一个实现细节,所以你可能不应该依赖它)。
我们可以在一个简单的示例 Controller 中看到这一点:
// The UIView that will be used as the main view// This is the superview@interface MyView : UIView@end@implementation MyView- (void)dealloc { NSLog(@"Dealloc MyView");}@end// This view will be put inside MyView to be used as a subview@interface MySubview : UIView@end@implementation MySubview- (void)dealloc { NSLog(@"Dealloc MySubview");}@end// This is the gesture recognizer that we will use// We will give one to each view, and see when it is deallocated@interface MyGestureRecognizer : UIGestureRecognizer@property (nonatomic, copy) NSString *tag;@end@implementation MyGestureRecognizer@synthesize tag;-(void)dealloc { NSLog(@"Dealloc MyGestureRecognizer tag: %@", tag);}@end// Just a test view controller that we will push on/pop off the screen to take a look at the deallocations@interface TestViewController : UIViewController @end@implementation TestViewController- (void)loadView { self.view = [[MyView alloc] init]; MyGestureRecognizer *recognizer = [[MyGestureRecognizer alloc] initWithTarget:self action:@selector(doStuff)]; recognizer.tag = @"MyViewGestureRecognizer"; recognizer.delegate = self; [self.view addGestureRecognizer:recognizer];}- (void)viewDidLoad { [super viewDidLoad]; MySubview *subview = [[MySubview alloc] init]; MyGestureRecognizer *recognizer = [[MyGestureRecognizer alloc] initWithTarget:self action:@selector(doStuff)]; recognizer.tag = @"MySubviewGestureRecognizer"; recognizer.delegate = self; [subview addGestureRecognizer:recognizer]; [self.view addSubview:subview];}- (void)doStuff { // we don't actually care what it does}@end
我们所做的就是添加 MyView 作为 TestViewController 的主视图,然后在 MyView 中添加一个 MySubview。我们还将 MyGestureRecognizer 附加到每个 View 。
当我们将它推离屏幕时,我们的日志输出显示:
Dealloc TestViewControllerDealloc MyViewDealloc MySubviewDealloc MyGestureRecognizer tag: MySubviewGestureRecognizerDealloc MyGestureRecognizer tag: MyViewGestureRecognizer
很抱歉,回答太长了...您发布它已经大约 3 个月了,所以也许您已经解决了这个问题,但如果其他人偶然发现了这个答案,我希望它能有所帮助。
关于ios App 在解除分配 UIView 子类实例时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18398069/
如何确定操作表何时已关闭或已被驳回? 我关注了这个主题Fitting a UIDatePicker into a UIActionSheet并向操作表添加了选择器 View 。但是,当操作表仍处于打开
在关闭 UIActivityViewController 后如何调用操作?例如,如果我想在用户关闭 UIActivityViewController 后更改一段文本。 谢谢大家! 最佳答案 使用它的完
我的代码中有以下几行: func searchBarTextDidBeginEditing(searchBar: UISearchBar) { searchBar.showsCancelBut
像这样使用 UIAlertController 时: var alert = UIAlertController(title: "Core Location", message: "Loca
我正在使用 UITableViewController 来显示要编辑的项目列表。点击一行后,用户将转到 View Controller 以编辑数据。 当他们通过默认 <(后退)按钮退出编辑屏幕时,我想
我有一个自定义的 UIImagePickerController ,它工作得很好,只是我面临一个我认为应该相当简单的问题 - 我只是还没有找到解决方案。 触摸我自定义添加的“照片”按钮后,我将其定位到
我在显示 UIMenuController 的表格 View 单元格上实现了一个长按手势识别器,当菜单显示时,相应的表格 View 单元格被选中,这是我的要求。但问题是当我触及 UIMenuContr
我有: df = pd.DataFrame({'col1': ['asdf', 'xy', 'q'], 'col2': [1, 2, 3]}) col1 col2 0 asdf 1
我正在尝试解除实时事件的绑定(bind)(已尝试使用 .live 和 .delegate)。 当我想解除绑定(bind)时,我有 3 个不同的选项:解除绑定(bind) "click"、解除绑定(bi
我正在使用 spock、geb 和 WebDriver 编写测试脚本。该脚本在不安全的页面上提交表单。该页面提交到安全的 HTTPS URL。 Firefox 对此显示警告,特别是: 这会导致以下错误
我有两个 s 和每个 ng-repeat,但都对其子元素执行相同的操作,如下所示: {{item.name}} {{item.name}} 想象一下,有两种类型的数据集,要渲染
我构建了一个通过 APIHiJack 连接到 Win32 TextOut 函数的应用程序。当应用程序启动时,DLL 将按预期注入(inject),并且我的新 TextOut 函数被成功调用。 目前,关
我遇到了一次非常奇怪的崩溃,这是回溯。 * thread #1: tid = 0x2403, 0x3379516c CoreFoundation`CFHash + 8, stop reason = E
我有一个 FirstViewController 和一个 SecondViewController。它们的 UINavigationBar 有不同的颜色。当我显示 SecondViewControll
抱歉,如果我在文档中遗漏了一些内容,但无论如何我都找不到阻止在 SweetAlert 2 中关闭对话框的方法,这些将不起作用: await Swal.fire({
有没有人见过这个?在 iPad 模拟器中,我有一个 About View Controller 。我想以模态方式呈现它,并让用户单击关闭按钮。 更复杂的是,我有一个主视图 Controller ,它显
我有 3 个 View Controller - BaseViewController->AviewController->BviewController。 AviewController 以模态方式
如果我在对象上有一个事件聚合器, eventAggregator: _.extend({}, Backbone.Events), 对于模态视图,我基本上让模态视图的呈现者监听模态视图的事件。 this
我有几个 View Controller 。如果 Alert View 被确认,我需要返回到第一个 View Controller。如果没有 unwind Segue,我会这样做: @IBAction
我有一个为 SharePoint 编写的 Accordion 菜单: parent.click(function(event) { event.preventDefault(); va
我是一名优秀的程序员,十分优秀!