ブレークポイントでXCode(同等のアセンブリコード)を表示するには?
Thread1 に移動すると、[ViewController viewDidLoad] の目的の c が表示され、[UIViewController ビュー] と [UIWindow makeKeyAndVisible] のアセンブリが表示されます。[ViewController viewDidLoad] のアセンブリをブレーク pt にマーカーで表示できるようにしたいですか?
(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);
}