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 an imageview and on button click i draw some bezier paths and some text layer too. on undo I m removed last drawn path and text layer. Now I want to resize my image View to set up in uper half portion of view and duplicated in lower half view, and want to resize all layers at the same time and also want to continue drawing after that. Plz help me.

share|improve this question
Duplicate your view i.e other instance of its class with same attributes.apply cgaffinetranslation 1/2 on xscale. on both copies place one below other see if it works – amar Jan 30 at 14:30
I think you are not updating your bezier path while resizing the image view. You can find a way for updating bezier path here stackoverflow.com/questions/13524022/… – Nitni Jan 31 at 6:24

1 Answer

Its too late to answer...

But may be this can help others. There is no autoresize masks for CALayers You can manage that with some tricks..

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

This will work if you have created a subclass of UIView. If not that, you can just set the bounds to the frame of CALayer anywhere if you have reference to your layer.

share|improve this answer

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.