iOS 7 Table view fail to auto adjust content inset

前端 未结 7 1657
情话喂你
情话喂你 2020-12-04 14:24

I am transiting my project to iOS7. I am facing a strange problem related to the translucent navigation bar.

I have a view controller and it has a tableview as subv

7条回答
  •  不知归路
    2020-12-04 15:16

    @Christopher Pickslay solution in Swift 2:

    override func viewDidLayoutSubviews() {
        super.viewDidLayoutSubviews()
    
        let topInset = topLayoutGuide.length
        inTableView.contentInset.top = topInset
        inTableView.contentOffset.y = -topInset
        inTableView.scrollIndicatorInsets.top = topInset
    }
    

提交回复
热议问题