Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
When is the view resized? When the device rotates, or when the user rotates it using multi-touch? – Evan Mulawski Oct 22 '10 at 20:33
This view is resized when the user taps on a button on another view (master view). – Little Lulu Oct 22 '10 at 20:36

3 Answers

As Uli commented below, the proper way to do it is overwrite layoutSubviews and layout the imageViews there.

If, for some reason, you can't subclass and overwrite layoutSubviews, observing bounds should work, even when being kinda dirty. Even worse, there is a risk with observing - Apple does not guarantee KVO works on UIKit classes. Read the discussion with Apple engineer here: When does an associated object get released?

original answer:

You can use key-value observing:

[yourView addObserver:self forKeyPath:@"bounds" options:0 context:nil];

and implement:

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
    if (object == yourView && [keyPath isEqualToString:@"bounds"]) {
        // do your stuff, or better schedule to run later using performSelector:withObject:afterDuration:
    }
}
share|improve this answer
Thanks Michal. I will try that! – Little Lulu Oct 22 '10 at 21:02
1  
Really, laying out subviews is exactly what layoutSubviews is for, so observing size changes, while functional, is IMO bad design. – uliwitness Jul 22 '11 at 12:49

Create subclass of UIView, and override layoutSubviews

share|improve this answer
the trouble with this is that subviews can not only change their size, but they can animate that size change. When UIView runs the animation, it does not call layoutSubviews each time. – David Jeske Feb 13 at 1:12

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:

- (void) setFrame:(CGRect)frame
{
  // Call the parent class to move the view
  [super setFrame:frame];

  // Do your custom code here.
}
share|improve this answer
Sensible and functional. Good call. – El Zorko May 7 '12 at 21:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.