gpt4 book ai didi

iphone - UIView内容错位

转载 作者:行者123 更新时间:2023-12-03 21:18:39 24 4
gpt4 key购买 nike

我有一个UIViewUIButton (在RootViewcontroller的viewDidLoad:方法中声明。)。

UIView  *geopointView = [[UIView alloc] initWithFrame:CGRectMake(0, 320, 120, 100)] ;
UIButton *mybutton = [[UIButton alloc] initWithFrame:CGRectMake(0, 330, 120, 30)] ;

mybutton 已添加到 geopointView。

  [geopointView addsubView:mybutton];

最后,UIView 在方法 showTheView 中添加到 RootViewController(在 rootViewController 中定义)

-(void) showTheView{
[self.view addsubView:geopointView];
}

但是当调用这个方法时,我发现 mybutton 和 geopointView 都是可见的,但 mybutton 没有放置在 geopointView 内部。 mybutton 的边界现在显示为 CGRectmake(10, 250, 120, 30);

任何人都可以告诉我这里缺少什么吗?感谢您提前提供的任何帮助。

最佳答案

试试这个

  UIbutton *mybutton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 120, 30)] ;

关于iphone - UIView内容错位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7333927/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com