Can I create a breakpoint in code in iOS, like `__asm{int 3}` on VC++, and continue execution after it's been hit?

前端 未结 9 2144
终归单人心
终归单人心 2020-12-30 04:24

I\'m trying to put the equivalent of asm{int 3} (or similar) into my iPhone program. My goal is to have Xcode stop exactly on the offending line, without having

9条回答
  •  轮回少年
    2020-12-30 05:05

    Direct equivalent of x86 int3 / int 3 in arm / arm64 is

    #if TARGET_CPU_ARM | TARGET_CPU_ARM64 | TARGET_CPU_ARM64E
    asm volatile("trap");
    #endif
    

提交回复
热议问题