romansorochak / ParallaxHeader

Simple way to add parallax header to UIScrollView/UITableView written in Swift.
MIT License
1.04k stars 131 forks source link

Remove ParallaxHeader from UITableView #42

Open sacrament opened 5 years ago

sacrament commented 5 years ago

Hi, Is there a way to remove the parallax header view from tableview?

thanks

deibytb commented 4 years ago

I didn't find a way to remove the parallax header. My solution is:

self.tableView.parallaxHeader.height = 0
let newView = UIView()
newView.backgroundColor = .white
self.tableView.parallaxHeader.view = newView
ahmedsafadii commented 4 years ago

+1