找不到实现查找函数 "class_getMethodImplementation" 通过 ObjC 方法分派的步骤将不起作用
Could not find implementation lookup function "class_getMethodImplementation" step in through ObjC method dispatch will not work
当从 xcode 构建和 运行 我的 iOS 应用程序时,终端中会出现以下消息 (iPhone 4s 运行 9.3.6) .
Could not find implementation lookup function
"class_getMethodImplementation" step in through ObjC method dispatch
will not work.
此消息未出现在 iOS 14.4 的 iPhone X 上。
这是什么意思?我一直无法找到与此消息相关的任何文档。
这是来自 LLDB(调试器)的警告,说它找不到 class_getMethodImplementation
(Obj-C 运行时中的一个方法),这将阻止它单步执行消息调度。
这可能对你帮助不大... 为什么 LLDB 无法找到该方法是你必须弄清楚的事情,以及它是否是一个重要的警告。
您可以在此 source 文件的第 726 行找到 LLDB 错误。
HTH
当从 xcode 构建和 运行 我的 iOS 应用程序时,终端中会出现以下消息 (iPhone 4s 运行 9.3.6) .
Could not find implementation lookup function "class_getMethodImplementation" step in through ObjC method dispatch will not work.
此消息未出现在 iOS 14.4 的 iPhone X 上。
这是什么意思?我一直无法找到与此消息相关的任何文档。
这是来自 LLDB(调试器)的警告,说它找不到 class_getMethodImplementation
(Obj-C 运行时中的一个方法),这将阻止它单步执行消息调度。
这可能对你帮助不大... 为什么 LLDB 无法找到该方法是你必须弄清楚的事情,以及它是否是一个重要的警告。
您可以在此 source 文件的第 726 行找到 LLDB 错误。
HTH