How to make a subview fill its superview

喜你入骨 提交于 2019-12-05 20:50:49

问题


I can't find the answer here anyway, nor do I see a duplicate question.

My code is simple. Given 3 UIView, parent, from and to, remove from from parent and add subview. + add animation but that's just doodads.

Now, the problem is when I do that, the to then get offsetted. It's as if it's pushed down.

I even add To.frame=ParentView.frame; to make sure it works. It doesn't.

What should I have done?

+ (void) AnimateSwitchingWithParent: (UIView *) ParentView From: (UIView *) From To: (UIView* ) To
{
    /*[UIView beginAnimations:@"View Flip" context:nil];
    [UIView setAnimationDuration:1.25];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];


    [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromRight forView:ParentView cache:YES];*/
    [From removeFromSuperview];
    [ParentView addSubview:To];

    To.frame=ParentView.frame; //If I don't do this, the subview is still off by around 20 points
    NSLog(@"To.bounds: %@", NSStringFromCGRect(To.bounds));
    NSLog(@"From.bounds.: %@", NSStringFromCGRect(From.bounds));
    NSLog(@"ParentView.bounds: %@", NSStringFromCGRect(ParentView.bounds));


    //JA_DUMP (To.bounds);
    //JA_DUMP (To.bounds);



    /*[UIView commitAnimations];*/

}

I have figured out the solution. Turns out the frame of To is

To.frames: {{0, 0}, {320, 372}}

However, if I remove To.frame=ParentView.frame the frame is also

{{0, 20}, {320, 460}}

I wonder why? 20 points seem to be the distance of the status bar. Where can we set that frame in InterfaceBuilder?

I set statusbar to none in SimulatedMetric section.


回答1:


Seems you misunderstand the frame and bounds, revise your code to To.frame=ParentView.bounds; should be OK.

Related: Why is there an frame rectangle and an bounds rectangle in an UIView?




回答2:


Fix "20 points" difference from bottom in subView and View in Swift:

To.frame = NSRect(origin: CGPoint(x: ParentView.bounds.origin.x, 
                                  y: ParentView.bounds.origin.y-20), 
                    size: ParentView.bounds.size)


来源:https://stackoverflow.com/questions/6402271/how-to-make-a-subview-fill-its-superview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!