Closed DimonDeveloper closed 7 years ago
Currently, device rotating is not supported. Of course it is contains as my tasks. But I can't state any definite date when it will be done. Thanks!
+1
+1
+1
+1
If you embed in a UINavigation controller before before presenting CLImageEditor it will control the rotation for you and fix this issue you just have to change shouldAutorotate to YES like below
- (BOOL)shouldAutorotate
{
return YES;
}
In CLImageEditor.m
please try #183 changes.
For this we need to make the presenting view controller portrait before presenting editor.
let value = UIInterfaceOrientation.portrait.rawValue
UIDevice.current.setValue(value, forKey: "orientation")
Done button beyond the screen and imageview off-center