I have no idea if this is possible at all, but it would save me from a lot of stress and bad code. Is it possible to monitor whenever an array gets updated? For example, method A changes the array a=[1,2,3]
to a=[1,2,3,4
], is it possible to have a sort of delegate that gets triggered when a
is updated?
Monitor changes to an array object
10.2k Views Asked by Oscar Apeland At
1
If your array is a property in your class, you can use property observers. willSet is called before the change, didSet is called after. It is really easy.
This will print array changed if I add an Int, remove and Int, etc. I generally put it on one line though: