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 UIView s transformation matrix is being
Share
Add a symbolic breakpoint in Xcode. Use
-[UIView setTransform:]as the Symbol.Use a more narrow subclass class if you want less or more specific output.