存在UITabBar时,将子视图添加到UIViewController的中心

时间:2019-06-13 16:58:47

标签: ios swift uiview navigationbar tabbar

当出现UITabBar时如何在中心添加subView?

以下是在中心添加子视图的代码,因为它不起作用。

    let imageView = UIImageView()
    imageView.frame = CGRect(x: 0,y: 0, width: 70,height: 70)
    imageView.center = view.center
    view.addSubview(imageView)
    imageView.loadGif(name: "loader")

我猜这是由于UITabBarUINavigationBar引起的;该如何解决?

0 个答案:

没有答案