You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Displays an alert with the specified target and model. Depending on the target parameter,
123
123
/// the alert is displayed either on the root or the sub-controller.
@@ -133,27 +133,27 @@ public protocol TabLinkNavigatorProtocol {
133
133
/// This method facilitates communication between pages, allowing data to be transferred to a specific 'sub' or page sheet as defined in the link item.
134
134
///
135
135
/// - Parameter item: The link item encapsulating the data and the target path to be sent.
136
-
func send(item:LinkItem)
136
+
func send(linkItem:LinkItem)
137
137
138
138
/// Sends the specified link item to the root controller which governs the page sheets (sub). This method is mainly used for communications directly involving the root controller which has overarching control over page sheets.
139
139
///
140
140
/// - Parameter item: The link item to be sent to the root controller.
141
-
func rootSend(item:LinkItem)
141
+
func rootSend(linkItem:LinkItem)
142
142
143
143
/// Sends the main items directly to the appMain, which is a NavigationController that wraps around the link navigator. This method allows for data communication directly with the appMain, facilitating broad-reaching communications within the app.
144
144
///
145
145
/// - Parameter item: The main items to be sent, often containing key-value pairs of data to be communicated to the appMain.
146
-
func mainSend(item:LinkItem)
146
+
func mainSend(linkItem:LinkItem)
147
147
148
148
/// Sends the specified items to all designated receivers, including both the 'sub' page sheets and the root controllers, within the current navigation stack. This allows for a widespread dissemination of data across various levels of the navigation stack.
149
149
///
150
150
/// - Parameter item: The items to be sent to all receivers, encapsulating data that may be relevant across multiple page sheets and root controllers.
151
-
func allSend(item:LinkItem)
151
+
func allSend(linkItem:LinkItem)
152
152
153
153
/// Sends the specified items to all root controllers in the navigation stack. This method is instrumental in disseminating information broadly at the root level, which governs the behaviors and states of the 'sub' page sheets.
154
154
///
155
155
/// - Parameter item: The items to be sent to all root controllers, typically containing information pertinent across all root level pages.
0 commit comments