Skip to content

Commit 15e4d6a

Browse files
author
Hristo Hristov
authored
ActionBar wasn’t applying native setters becasue it was missing nativeView (NativeScript#3910)
1 parent 12a0334 commit 15e4d6a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tns-core-modules/ui/action-bar/action-bar.ios.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ export class ActionBar extends ActionBarBase {
5959
return null;
6060
}
6161

62+
public createNativeView(): UIView {
63+
return this.ios;
64+
}
65+
6266
public _addChildFromBuilder(name: string, value: any) {
6367
if (value instanceof NavigationButton) {
6468
this.navigationButton = value;

0 commit comments

Comments
 (0)