Set Image Underlay of Transparent Navigation Bar and Status Bar in Swift iOS 8

前端 未结 4 811
遥遥无期
遥遥无期 2020-12-13 16:42

I am new in iOS swift development and I am facing a problem. I want to set transparent navigation bar and make image underlay of transparent navigation bar and status bar li

4条回答
  •  感情败类
    2020-12-13 16:58

    I solved this by setting transparent UIColor for status bar background.

        guard  let statusBar = UIApplication.sharedApplication().valueForKey("statusBarWindow")?.valueForKey("statusBar") as? UIView else {
                    return
                }
                statusBar.backgroundColor = UIColor(red: 2, green: 200.0, blue: 200, alpha: 0) // color value has no effect. Only alpha value is needed to make it transparent
    

提交回复
热议问题