I am trying to find out how a UIViews transformation matrix is being modified. Thus (using the gdb console) I'd like to watch for any/all changes of the UIView's transform property. How would I go about doing so?
I am trying to find out how a UIViews transformation matrix is being modified. Thus (using the gdb console) I'd like to watch for any/all changes of the UIView's transform property. How would I go about doing so?
If you're like me, and don't write in Obj-C, here's a quick Swift way to do it for beginners.
Just add a didSet to the property, and a breakpoint inside the block.