I'm writing a custom NSView that has an intrinsicContentSize that depends on the view subtree constraints (specifically on the subviews fittingSize property).
The fittingSize property seems to be unobservable by KVO, so I can't invoke my view invalidateIntrinsicContentSize method whenever one of the subviews' fittingSize properties is changed.
When does cocoa check if my intrinsicContentSize is valid, if I want to check the subviews' fittingSize and invoke invalidateIntrinsicContentSize just before that (if needed)?