我在Swift中为Cordova创建了一个小插件。我现在面临的唯一问题是控制器似乎正在启动,但它没有在Cordova应用程序上方全屏显示。我认为在cordova app上设置视图时缺少一些方法。
代码:
class ContainerViewController: CDVViewController {
var brandID: String!
var authenticationCode:String!
override func viewDidLoad() {
self.navigationItem.leftBarButtonItem = UIBarButtonItem(
image: UIImage(named: "backbutton"),
style: .plain,
target: self,
action: #selector(ContainerViewController.backToMainScreen)
)
UIView.animate(withDuration: 0.2, animations: {
self.view.alpha = 1.0
})
}
}
你能指导我做错了吗?如果可能的话,还可以指导文档中的一些章节