I have a table view of objects Object
in an array _objects
. Each object has a property status
that I want to display in the table view.
My question is, how can I do this using KVO ?
I need to observe addition/removal, I think I got that working with KVO on the array itself, but I also need to observe each object's status
keypath to update the table view cell.