无法更改iOS NativeScript中的状态栏颜色

时间:2018-06-05 11:28:00

标签: nativescript

我正在尝试将iOS中状态栏的颜色文本更改为白色。这就是我到目前为止所做的:

import { topmost } from "ui/frame";

export class HomeComponent implements OnInit {

    constructor() {

    }
    ngOnInit()
    {
        if(app.ios)
        {
            var navBar = topmost().ios.controller.navigationBar;
            navBar.barStyle = 1;
        }
    }
}

但这似乎不起作用。有什么建议吗?

0 个答案:

没有答案