如何以这种形式显示View或ViewController。 我有一个VideoChatViewController显示流视频。我读过画中画,但这对我来说不是最合适的选择。
我创建了View Controller,并尝试了这样的当前MainTabBarController:
let tabBarVC = storyboard?.instantiateViewController(withIdentifier: "MainTabBarController") as! MainTabBarController
self.view.addSubview(tabBarVC.view)
// And after present Mini View
let vc = UIViewController()
vc.view.frame = CGRect(x: self.view.frame.midX,
y: self.view.frame.midY,
width: 200,
height: 200)
vc.view.backgroundColor = .red
vc.modalPresentationStyle = .overCurrentContext
self.view.addSubview(vc.view)
我有
我知道这是错误的方法。但是我该怎么做呢?