Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import UIKit

@MainActor
extension UIViewController {
func addChild(_ child: UIViewController, in containerView: UIView) {
guard containerView.isDescendant(of: view) else { return }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ protocol HeightConstraintOverlayTranslationControllerDelegate: AnyObject {
func translationControllerDidScheduleTranslations(_ translationController: OverlayTranslationController)
}

@MainActor
class HeightConstraintOverlayTranslationController: OverlayTranslationController {

weak var delegate: HeightConstraintOverlayTranslationControllerDelegate?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import UIKit

@MainActor
class InterruptibleAnimatorOverlayContainerTransitionCoordinator: OverlayContainerTransitionCoordinator {

private let animator: UIViewImplicitlyAnimating
Expand Down