最初,我创建了一个名为MainView的视图。在该视图中,我放置了一个名为UnitsView的视图。我的问题是:如果要在MainView上添加UnitsView意味着我必须使用self.view还是MainView。

UIView *MainView = [[UIViewalloc]initwithframe: CGRectMake    (0,0,self.view.frame.size.width, self.view.frame.size.height) ];
TopView.backgroundColor = [UIColor grayColor];
[self.view addSubview:TopView];

UIView *UnitsView = [[UIView alloc]init];
[self.view (or)MainView addsubView:UnitsView];

最佳答案

UIView *UnitsView = [[UIView alloc]initwithframe: CGRectMake(0,0,width,height)];
[MainView addsubView:UnitsView];
[self.view addSubView:MainView];

关于ios - 如何以编程方式在iOS中添加SubView?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34334768/

10-13 01:10