Light gray background in “bounce area” of a UITableView

前端 未结 16 2104
一整个雨季
一整个雨季 2020-11-28 23:05

Apple\'s iPhone apps such as Music and Contants use a search bar in a UITableView. When you scroll down so that the search bar moves down, the empty space above the scroll v

16条回答
  •  情话喂你
    2020-11-28 23:21

    In Swift (tested on iOS9)

        let backView = UIView(frame: self.tableView.bounds)
        backView.backgroundColor = UIColor.clearColor() // or whatever color
        self.tableView.backgroundView = backView
    

提交回复
热议问题