Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您想要的是一个观察点(请参阅此处的“设置观察点” )。
基本上,他们监视内存的写入并在发生这种情况时中断程序。
我认为您只能从调试控制台而不是 Xcode UI 设置它们:
(lldb) watchpoint set variable myinstancevar
或者
(lldb) w s v myinstancevar