• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 单击注释上的右侧详细信息披露按钮时,MonoTouch 会引发 SIGSEGV

[复制链接]
菜鸟教程小白 发表于 2022-12-12 19:45:14 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

代码:

UIButton rightButton = UIButton.FromType (UIButtonType.DetailDisclosure);

rightButton.TouchUpInside += (o, e) => { Console.WriteLine("hello"); };

堆栈跟踪:

...

native 堆栈跟踪:

0   taggr                               0x000908fc mono_handle_native_sigsegv + 284
1   taggr                               0x00005c98 mono_sigsegv_signal_handler + 248
2   libsystem_c.dylib                   0x95c2859b _sigtramp + 43
3   ???                                 0xffffffff 0x0 + 4294967295
4   UIKit                               0x0219355a -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 61
5   UIKit                               0x02238b76 -[UIControl sendAction:to:forEvent:] + 66
6   UIKit                               0x0223903f -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 503
7   UIKit                               0x022382fe -[UIControl touchesEnded:withEvent:] + 549
8   UIKit                               0x021b8a30 -[UIWindow _sendTouchesForEvent:] + 513
9   UIKit                               0x021b8c56 -[UIWindow sendEvent:] + 273
10  UIKit                               0x0219f384 -[UIApplication sendEvent:] + 464
11  UIKit                               0x02192aa9 _UIApplicationHandleEvent + 8196
12  GraphicsServices                    0x0478afa9 PurpleEventCallback + 1274
13  CoreFoundation                      0x011951c5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
14  CoreFoundation                      0x010fa022 __CFRunLoopDoSource1 + 146
15  CoreFoundation                      0x010f890a __CFRunLoopRun + 2218
16  CoreFoundation                      0x010f7db4 CFRunLoopRunSpecific + 212
17  CoreFoundation                      0x010f7ccb CFRunLoopRunInMode + 123
18  GraphicsServices                    0x04789879 GSEventRunModal + 207
19  GraphicsServices                    0x0478993e GSEventRun + 114
20  UIKit                               0x02190a9b UIApplicationMain + 1175
21  ???                                 0x09ff8784 0x0 + 167741316
22  ???                                 0x09ff79d0 0x0 + 167737808
23  ???                                 0x09ff7878 0x0 + 167737464
24  ???                                 0x09ff7907 0x0 + 167737607
25  taggr                               0x0000a002 mono_jit_runtime_invoke + 722
26  taggr                               0x00169efe mono_runtime_invoke + 126
27  taggr                               0x0016dfe4 mono_runtime_exec_main + 420
28  taggr                               0x00173405 mono_runtime_run_main + 725
29  taggr                               0x00067205 mono_jit_exec + 149
30  taggr                               0x002116d5 main + 2837
31  taggr                               0x00003055 start + 53

在执行 native 代码时获得了 SIGSEGV。这通常表明 单声道运行时或 native 库之一中的 fatal error 由您的应用程序使用。



Best Answer-推荐答案


该代码是对还是错,取决于它的上下文。让我们假设它是错误的(使用堆栈跟踪),因为它的用法如下:

void BadCase ()
{
    UIButton rightButton = UIButton.FromType (UIButtonType.DetailDisclosure);
    rightButton.TouchUpInside += (o, e) => { Console.WriteLine("hello"); };
}

在这种情况下,rightButton 可以在方法返回后被收集(由垃圾收集器)(因为没有对局部变量的托管引用)。但是,native 按钮仍然可以存在,并且会在触摸事件发生时尝试回调(到 托管 代码中)。这将导致崩溃(因为收集了 托管 实例)。

UIButton rightButton;

void GoodCase ()
{
    rightButton = UIButton.FromType (UIButtonType.DetailDisclosure);
    rightButton.TouchUpInside += (o, e) => { Console.WriteLine("hello"); };
}

您可以通过保留对按钮的引用来轻松避免这种情况,例如通过将其从局部变量提升到字段。这将阻止 GC 收集 ma​​naged 按钮,直到实例(类型的)被释放。这意味着 native 按钮将能够回调到 ma​​naged 土地并输出您的 hello

关于ios - 单击注释上的右侧详细信息披露按钮时,MonoTouch 会引发 SIGSEGV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9772930/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap