• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

通过addSubview添加时,视图调整为其父级

用户头像
it1352
帮助1

问题说明

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.

正确答案

#1

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

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.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfhgfi
系列文章
更多 icon
同类精品
更多 icon
继续加载