Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a UIView which has about 8 different CALayer sublayers added to its layer. If I modify the view's bounds (animated), then the view itself gets shrinked (I checked it with a backgroundColor), but the sublayers' size remains unchanged.

How to solve this? I've just started Googling but haven't found any useful. Thanks in advance.

share|improve this question
Any releated parts of the documentation? Please, shed a light. – Geri Mar 23 '10 at 23:06

3 Answers

up vote 22 down vote accepted

I used the same approach that Solin used, but there's a typo in that code. The method should be:

- (void)layoutSubviews {
  // resize your layers based on the view's new bounds
  mylayer.frame = self.bounds;
}

For my purposes, I always wanted the sublayer to be the full size of the parent view. Put that method in your view class.

share|improve this answer
1  
This is incorrect in some situations. "self.bounds" gives the position of the view w.r.t its superview. Assuming myLayer is added with [self.layer addSublayer:mylayer], then its frame is wrt to the view's layer, not wrt the view's superview. In this case, you probably want to set the origin of the frame to (0,0), rather than what happens to be in self.bounds.origin. – fishinear Dec 14 '11 at 15:03
6  
@fishinear are you sure? it sounds like you are describing frame. bounds should, theoretically, always have 0,0 as its origin. – griotspeak Feb 11 '12 at 2:32
@griotspeak - that's actually not the case. See the description of the bounds property here: developer.apple.com/library/ios/#documentation/uikit/reference/… -- "By default, the origin of the bounds rectangle is set to (0, 0) but you can change this value to display different portions of the view." – jdc Mar 22 at 22:43
Many thanks, I have since learned of a few cases (scroll view, for one) where that is not true but I forgot about this comment. – griotspeak Mar 23 at 13:41

Since CALayer on the iPhone does not support layout managers, I think you have to make your view's main layer a custom CALayer subclass in which you override layoutSublayers to set the frames of all sublayers. You must also override your view's +layerClass method to return the class of your new CALayer subclass.

share|improve this answer
Override +layerClass like in the case of OpenGL layer override? Think so. Set the frames of the sublayers? Set to what? I have to calculate all the sublayers' frames/positions individually depending on the superlayers frame size? Isn't there any "constraint-like", or "link-to-superlayer"-like solution? Oh, god, another day out of time-frame. CGLayers got resized, but was too laggy, CALayers are fast enough, but did not get resized. So many surprise. Thanks for the reply, anyway. – Geri Mar 24 '10 at 11:46
3  
CALayer on the Mac has layout managers for this but they are not available on the iPhone. So yes, you have to calculate the frame sizes yourself. Another option could be to use subviews instead of sublayers. Then you could set the subviews' autoresizing masks accordingly. – Ole Begemann Mar 24 '10 at 11:52
1  
Ya, UIViews are too performance expensive classes, thatswhy I use CALayers. – Geri Mar 24 '10 at 16:35
I tried the way you suggested. It works, and it is not. I resize the view animated, but the sublayers resizes in a different animation. Bloody hell, what to do now? What is the method to override in the CALayer subclass what invokes on EVERY (!) frame of the view's animation? Is there any? – Geri Mar 24 '10 at 19:32
Just bumped into this as well. Seems like the best option is to subclass CALayer as Ole said, but it seems unnecessarily cumbersome. – Dimitri May 27 '10 at 15:53

I had the same problem. In a custom view's layer I added two more sublayers. In order to resize the sublayers (every time the custom view's boundaries change), I implemented the method layoutSubviews of my custom view; inside this method I just update each sublayer's frame to match the current boundaries of my subview's layer.

Something like this:

-(void)layoutSubviews{
   //keep the same origin, just update the width and height
   if(sublayer1!=nil){
      sublayer1.frame = self.layer.bounds;
   }
}
share|improve this answer
3  
FYI, you don't need the if(sublayer1!=nil), since ObjC defines messages to nil (in this case, -setFrame:) as a no-op returning 0. – Andrew Pouliot Sep 20 '11 at 23:14

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.