在一个viewcontroller中如何添加一个child viewcontroller

Generated on 4/3/2025

1 search

To add a child view controller in a UIViewController, you can follow these steps:

  1. Instantiate the Child View Controller: Create an instance of the view controller you want to add as a child.

  2. Add the Child View Controller: Use the addChild(_:) method to add the child view controller to the parent.

  3. Add the Child's View to the Parent's View Hierarchy: Add the child view controller's view to the parent's view hierarchy.

  4. Notify the Child View Controller: Call didMove(toParent:) on the child view controller to notify it that it has been added to a parent.

Here's a basic example in code:

let childViewController = YourChildViewController()
addChild(childViewController)
view.addSubview(childViewController.view)
childViewController.didMove(toParent: self)

This process is not directly covered in the provided WWDC session segments, but it is a common practice in UIKit for managing view controller hierarchies. If you are interested in integrating SwiftUI views into a UIKit view controller, you might find the session SwiftUI essentials useful, as it discusses interoperability between SwiftUI and UIKit.

SwiftUI essentials

SwiftUI essentials

Join us on a tour of SwiftUI, Apple’s declarative user interface framework. Learn essential concepts for building apps in SwiftUI, like views, state variables, and layout. Discover the breadth of APIs for building fully featured experiences and crafting unique custom components. Whether you’re brand new to SwiftUI or an experienced developer, you’ll learn how to take advantage of what SwiftUI has to offer when building great apps.

Demystify SwiftUI containers

Demystify SwiftUI containers

Learn about the capabilities of SwiftUI container views and build a mental model for how subviews are managed by their containers. Leverage new APIs to build your own custom containers, create modifiers to customize container content, and give your containers that extra polish that helps your apps stand out.

Enhance your UI animations and transitions

Enhance your UI animations and transitions

Explore how to adopt the zoom transition in navigation and presentations to increase the sense of continuity in your app, and learn how to animate UIKit views with SwiftUI animations to make it easier to build animations that feel continuous.

Evolve your document launch experience

Evolve your document launch experience

Make your document-based app stand out, and bring its unique identity into focus with the new document launch experience. Learn how to leverage the new API to customize the first screen people see when they launch your app. Utilize the new system-provided design, and amend it with custom actions, delightful decorative views, and impressive animations.

Explore multiview video playback in visionOS

Explore multiview video playback in visionOS

Learn how AVExperienceController can enable playback of multiple videos on Apple Vision Pro. Review best practices for adoption and explore great use cases, like viewing a sports broadcast from different angles or watching multiple games simultaneously. And discover how to design a compelling and intuitive multiview experience in your app.

Migrate your TVML app to SwiftUI

Migrate your TVML app to SwiftUI

SwiftUI helps you build great apps on all Apple platforms and is the preferred toolkit for bringing your content into the living room with tvOS 18. Learn how to use SwiftUI to create familiar layouts and controls from TVMLKit, and get tips and best practices.