안녕하세요. WWDC22에 소개된 Use SwiftUI with UIKit 영상을 보고 내용 정리해보는 시간을 가져볼게요. # 1. UIHostingController UIHostingController는 SwiftUI 뷰 계층을 포함하고 있는 UIViewController 입니다. UIHostingController는 UIViewController이기 때문에 UIKit 프로젝트에서 사용할 수 있죠. 예시를 들어볼게요. SwiftUI View를 rootView로 한 UIHostingController를 만들고 화면에 출력해줄 수 있어요. class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } @..