Is there a UIView resize event?

Viewed 80539

I have a view that has rows and columns of imageviews in it.

If this view is resized, I need to rearrange the imageviews positions.

This view is a subview of another view that gets resized.

Is there a way to detect when this view is being resized?

7 Answers

Create subclass of UIView, and override layoutSubviews

Related