如何在断点处查看 XCode(等效汇编代码)?
我去了 Thread1,它显示了 [ViewController viewDidLoad] 的 Objective-c,然后显示了 [UIViewController view] 和 [UIWindow makeKeyAndVisible] 的程序集。我希望能够在中断点看到带有标记的 [ViewController viewDidLoad] 的程序集?
(Product->GenerateOutput->Generate Assembly File:不显示中断点。)
谢谢
void addme(int *a)
{
*a += 0xFF;// <-- I want to see the assembly for this: should see an instruction "ADD" in the assembly break down
*a += 1;
*a += 2;
}
- (void)viewDidLoad
{
[super viewDidLoad];
int a = 12;
addme(&a);
}