To watch a array I do like this:
NSMutableArray *myArray = [@[] mutableCopy];
// set a lldb watchpoint here: (lldb) w s v myArray
However this kind of watchpoint ONLY WORKS when the memory address change eg:
myArray = [NSMutableArray array];
What I want to watch is myArray's content change eg:
[myArray addObject: @1] //I want get notify when this thing happen
Is anybody face the same problem, How do you achieve this kind of thing.