答案 0 :(得分:0)
很简单。从代码中创建一个新的setChannel()
,然后像这样使用方法UIView
addSubview
x e y在superview上引用
答案 1 :(得分:0)
如果您想将一个视图作为子视图添加到另一个视图,那么,
Viewcontroller.m
[self addChildViewController:newviewcontroller];
[self.view addSubview:newviewcontroller.view];
[newviewcontroller didMoveToParentViewController:self];
现在newviewcontroller.view是您的子视图和Viewcontroller的子视图
或
abc.m(UIView的)
UIView *v=[[UIView alloc]initWithFrame:CGRectMake(0, 0, width, height)];
[self addsubview:v];