本文介绍了通过addSubview添加时,将视图调整为其父级的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hy我有问题,当使用addSubview。
示例代码:

Hy i'm having problem when using addSubview.Example code:

ParentView *myParentView = [[ParentView alloc] initWithNibName:@"ParentView " bundle:nil];
ChildeView *myChildeView = [[ChildeView alloc] initWithNibName:@"ChildeView" bundle:nil];

//...  parent frame resized with setFrame lets say to x:0, y:0, W:320, H:411

[[myParentView view] addSubview: [myChildeView view]];

添加时我的chield比父代更大,并且不要将其框架调整为父边界。我不能使用剪辑子视图在父,并且自动调整子视图似乎不工作,如果父框架不调整大小。是否有一个属性可以使子视图自动调整为其父边界,而不是对每个子元素使用setFrame。

My chield when added is bigger then the parent, and do not resize it frame to parent bounds. I can't use "clip subviews" on the parent , and "Autoresize Subviews" seems not to work if parent frame do not resized again. Is there a property that make subviews resize automatically to it's parent bounds, without using setFrame on every child.

推荐答案

子视图的自动调整大小掩码?请尝试以下操作:

Have you tried setting the child view's autoresize mask? Try this:

[ myChildeView setAutoresizingMask:( UIViewAutoresizingFlexibleWidth |
                                     UIViewAutoresizingFlexibleHeight )];

此外,您可能需要拨打

[ myParentView setAutoresizesSubviews:YES ];

以获取父视图自动调整子视图的大小。

to get the parent view to resize the child view(s) automatically.

这篇关于通过addSubview添加时,将视图调整为其父级的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 19:57