我正在尝试将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;
}
}
}
但这似乎不起作用。有什么建议吗?