iOS 在一个view上添加Controller视图
作者:
小和大大 | 来源:发表于
2022-07-25 10:36 被阅读0次
- 在View上添加一个Controller视图
//核心代码,必须先addChildViewController
self.chatListVc = [[ChatListVC alloc] init];
[self addChildViewController:self.chatListVc];
[self.view addSubview:self.chatListVc.view];
self.chatListVc.view.frame = CGRectMake(0, kStatusbarAndNavbarHeight, kScreenWidth, kScreenHeight-kStatusbarAndNavbarHeight);
- 销毁
[self.chatListVc.view removeFromSuperview];
本文标题:iOS 在一个view上添加Controller视图
本文链接:https://www.haomeiwen.com/subject/xfjgirtx.html
网友评论