We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ViewController
1 parent ec3efca commit 48c0bd3Copy full SHA for 48c0bd3
Sources/SwiftWin32/View Controllers/ViewController.swift
@@ -267,6 +267,18 @@ public class ViewController: Responder {
267
NSNotification.Name(rawValue: "UIViewControllerShowDetailTargetDidChangeNotification")
268
}
269
270
+ // MARK - Responding to Containment Events
271
+
272
+ /// Called just before the view controller is added or removed from a
273
+ /// container view controller.
274
+ public func willMove(toParent viewController: ViewController?) {
275
+ }
276
277
+ /// Called after the view controller is added or removed from a container view
278
+ /// controller.
279
+ public func didMove(toParent viewController: ViewController?) {
280
281
282
// MARK -
283
284
override public init() {
0 commit comments