Question was answered in the comments below
I have an array of objects and a property of the objects keep changing. I want to set a watchpoint on that specific property in a few elements of the array. Is that possible?
I have seen this answer on how to set watch points in swift, however setting a watchpoint on the array doesn't stop the debugger when an element of that array changes. it doesn't even stop if an element is added to the array
Thanks for the help!
Clarification: I am looking for changes to a particular element of the Array
Clarification: Based on the comments below, I realized the array is irrelevant to the question. I guess a better question would be, how do I set a watchpoint on a property of an object?