From a5d3414d92f8f539f4113944cbbec47bcda90c2a Mon Sep 17 00:00:00 2001 From: wangxiuxiu96 Date: Sat, 5 Apr 2025 18:12:38 +0800 Subject: [PATCH] nodecontroller_fix Signed-off-by: wangxiuxiu96 --- api/arkui/NodeController.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/arkui/NodeController.d.ts b/api/arkui/NodeController.d.ts index b2e6f94752..a1c3a8f091 100644 --- a/api/arkui/NodeController.d.ts +++ b/api/arkui/NodeController.d.ts @@ -195,9 +195,9 @@ export abstract class NodeController { * @since 18 */ onWillUnbind?(containerId: number): void; - + /** - * OnBind Method. Executed when the NodeController is bound to a NodeContainer. + * OnBind Method. Executed after the NodeController is bound to a NodeContainer. * * @param { number } containerId - the uniqueId of the NodeContainer. * @syscap SystemCapability.ArkUI.ArkUI.Full @@ -208,7 +208,7 @@ export abstract class NodeController { onBind?(containerId: number): void; /** - * OnUnbind Method. Executed when the NodeController is unbind with the NodeContainer. + * OnUnbind Method. Executed after the NodeController is unbind with the NodeContainer. * * @param { number } containerId - the uniqueId of the NodeContainer. * @syscap SystemCapability.ArkUI.ArkUI.Full