document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class MyDynamicHeader: OLSDynamicHeaderView {
  2.  
  3.     func maxHeight() -> CGFloat {
  4.         return 256
  5.     }
  6.  
  7.     func minHeight() -> CGFloat {
  8.         return 64 //status bar + nav bar
  9.     }
  10.  
  11.     func resize(withProgress progress: CGFloat) {
  12.         //Some animations here
  13.     }
  14.  
  15.     func overflow(withPoints points: CGFloat)  {
  16.         //optional animations here
  17.     }
  18. }
');