tags:

views:

31

answers:

1

I have UIImageView with subviews. How can I change frames of subviews after rotation UIImageView? I need your help)

A: 

If your subView is called view1, do something like this:

view1.frame = CGRectMake(0,0,50,50);
Jane Sales