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?
|
|
As Uli commented below, the proper way to do it is overwrite If, for some reason, you can't subclass and overwrite original answer: You can use key-value observing:
and implement:
|
|||||||
|
|
Create subclass of UIView, and override layoutSubviews |
|||
|
|
You can create a subclass of UIView and override the setFrame:(CGRect)frame method. This is the method called when the frame (i.e. the size) of the view is changed. Do something like this:
|
|||
|
|