美文网首页nav和tabbar设置iOS开发iOS开发点滴
iOS 在一个view上添加Controller视图

iOS 在一个view上添加Controller视图

作者: 小和大大 | 来源:发表于2022-07-25 10:36 被阅读0次
  1. 在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);
  1. 销毁
[self.chatListVc.view removeFromSuperview];

相关文章

网友评论

    本文标题:iOS 在一个view上添加Controller视图

    本文链接:https://www.haomeiwen.com/subject/xfjgirtx.html