I need to understand when UIView appears on the screen, so I need an analogue of the viewDidAppear method.
I found a UIView lifecycle:
- willMoveToSuperview
- invalidateIntrinsicContentSize
- didMoveToSuperview
- awakeFromNib
- willMoveToWindow
- needsUpdateConstraints
- didMoveToWindow
- setNeedsLayout
- updateConstraints
- layoutSubviews
- drawRect
I tried all of these methods, but I didn't get an answer.