实战3:找到长按响应函数断点不成功

照着书上的找到长按响应函数例子做
(lldb) po [WCContentItemViewTemplateNewSight _shortMethodDescription]
得到

  • (void) onLongPressedWCSightFullScreenWindow:(id)arg1; (0x102b0d0a4)
  • (void) onLongTouch; (0x1028fa790)
    然后
    (lldb) b 0x102b0d0a4
    Breakpoint 4: where = WeChat___lldb_unnamed_symbol146462$$WeChat, address = 0x0000000102b0d0a4 (lldb) b 0x102b0d6c8 Breakpoint 5: where = WeChat___lldb_unnamed_symbol146464$$WeChat, address = 0x0000000102b0d6c8
    (lldb) c

但是去播放或者长按都没有断点下来,有可能是什么原因呢