kishikawakatsumi / PEPhotoCropEditor

Image cropping library for iOS.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Disabled Rotation?

jasanchezsa opened this issue · comments

Firstly congratulations on the project. Sorry for my English.

You can disable the rotation?

Thank you very much.

Sorry

Just comment these lines of code:

UIRotationGestureRecognizer *rotationGestureRecognizer = [[UIRotationGestureRecognizer alloc] initWithTarget:self action:@selector(handleRotation:)];
rotationGestureRecognizer.delegate = self;
[self.scrollView addGestureRecognizer:rotationGestureRecognizer];

I thought setting [controller setRotationEnabled:NO]; in the openEditor method would address this, but it doesn't...