uiview rotation reset size problem
        Posted  
        
            by 
                user564968
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user564968
        
        
        
        Published on 2011-01-06T13:58:12Z
        Indexed on 
            2011/01/08
            5:54 UTC
        
        
        Read the original article
        Hit count: 253
        
core-graphics
|rotation
i have uiview i have rotate view left and right side ...i m transform view ...but problem is view fream is not changing...
my code is like this ...
CGAffineTransform tRotate45 = CGAffineTransformMakeRotation(-1.57); self.view.transform = tRotate45; imageScrollView.contentSize = CGSizeMake(480, 320);
self.view.frame =[[UIView alloc] ] CGRectMake(0, 0, 480, 320);
view is showing proper how can i adjust this ...
© Stack Overflow or respective owner