Skip to content

Some CropView bottom is hided if TOCropViewController is not full height #367

Open
@dobiho5

Description

@dobiho5

Describe the bug

Some CropView Bottom is hided when CropViewController is not full height.


// View has another toolbar below TOCropViewController
TOCropViewController *cropController;

self.cropController = =  [[TOCropViewController alloc] initWithCroppingStyle:self.croppingStyle image:self.image];

self.cropController.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.toolBar.frame.origin.y);

[self addChildViewController:self.cropController];
    [self.view addSubview:self.cropController.view];
    [self.cropController didMoveToParentViewController:self];
    [self.view bringSubviewToFront:self.toolBar];

I can fixed it in TOCropViewController.m with +100

- (CGRect)frameForCropViewWithVerticalLayout:(BOOL)verticalLayout
{
if (!verticalLayout) {
        frame.origin.x = kTOCropViewControllerToolbarHeight + insets.left;
        frame.size.width = CGRectGetWidth(bounds) - frame.origin.x;
		frame.size.height = CGRectGetHeight(bounds);
    }
    else { // Vertical layout
        frame.size.height = CGRectGetHeight(bounds);
        frame.size.width = CGRectGetWidth(bounds);

        // Set Y and adjust for height
        if (self.toolbarPosition == TOCropViewControllerToolbarPositionBottom) {
           // +100
            frame.size.height -= (insets.bottom + kTOCropViewControllerToolbarHeight + 100);
        } else if (self.toolbarPosition == TOCropViewControllerToolbarPositionTop) {
			frame.origin.y = kTOCropViewControllerToolbarHeight + insets.top;
            frame.size.height -= frame.origin.y;
        }
    }
}

If TOCropViewController frame is changed, would you change bottom height?

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions