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
* Gets the native iOS [UITabBarController](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITabBarController_Class/) that represents the user interface for this component. Valid only when running on iOS.
52
68
*/
53
69
ios: UITabBarController;
70
+
71
+
/**
72
+
* String value used when hooking to the selectedIndexChanged event.
73
+
*/
74
+
publicstaticselectedIndexChangedEvent: string;
75
+
76
+
/**
77
+
* A basic method signature to hook an event listener (shortcut alias to the addEventListener method).
78
+
* @param eventNames - String corresponding to events (e.g. "propertyChange"). Optionally could be used more events separated by `,` (e.g. "propertyChange", "change").
79
+
* @param callback - Callback function which will be executed when event is raised.
80
+
* @param thisArg - An optional parameter which will be used as `this` context for callback execution.
0 commit comments