随着对我的图片使用新比例,然后我应用旋转,然后比例图像变得旧比例
-(void)rotate:(UIRotationGestureRecognizer *)rotationRecognizer{
double rotation;
rotation=rotationRecognizer.rotation;
((UIImageView*)[rotationRecognizer view]).transform = CGAffineTransformMakeRotation(rotation);
self.photoParent = [self.pictures objectAtIndex:0];
self.photoParent.rotation =[NSNumber numberWithDouble:rotation];
NSLog(@"rotation%@",self.photoParent);
}