用lldb调试时,只能看到前三行代码

需求:既然能看到三行代码,那么我想能不能打印出所有代码呢
问题:不知道该怎么办
代码:

  • thread #1, queue = ‘com.apple.main-thread’, stop reason = breakpoint 2.1
    frame #0: 0x00000001004f2d64 nationalFitness`::-[MessageChatListViewController checkChatListCorrect](self=0x000000012c5b2720, _cmd="\xffffffd0\x19P,\x01") at MessageChatListViewController.m:1176
    1173 return _parms;
    1174 }
    1175
    → 1176 -(void)checkChatListCorrect{
    1177 jqFmdb = [JQFMDB shareDatabase:@“tongxun.sqlite”];
    1178 __block NSArray *arrs = [NSArray new];
    1179 __weak typeof(self)weakSelf=self;
    Target 0: (nationalFitness) stopped.

有办法能看到checkChatListCorrect方法中 1179 行后面的代码么

正常是看不到代码的。。。这个是根据dsym啥的加载的你电脑上的代码。