├── .gitignore ├── BLKFlexibleHeightBar Demo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── BLKFlexibleHeightBar Demo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Close.png ├── DemoViewController.h ├── DemoViewController.m ├── FacebookStyleBar.h ├── FacebookStyleBar.m ├── FacebookStyleViewController.h ├── FacebookStyleViewController.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── ProfilePicture.imageset │ │ └── Contents.json ├── Info.plist ├── ProfilePicture.png ├── SquareCashStyleBar.h ├── SquareCashStyleBar.m ├── SquareCashStyleViewController.h ├── SquareCashStyleViewController.m ├── facebook-icon.png ├── main.m └── square-cash-icon.png ├── BLKFlexibleHeightBar DemoTests ├── BLKFlexibleHeightBar_DemoTests.m └── Info.plist ├── BLKFlexibleHeightBar.podspec ├── BLKFlexibleHeightBar ├── BLKDelegateSplitter.h ├── BLKDelegateSplitter.m ├── BLKFlexibleHeightBar.h ├── BLKFlexibleHeightBar.m ├── BLKFlexibleHeightBarBehaviorDefiner.h ├── BLKFlexibleHeightBarBehaviorDefiner.m ├── BLKFlexibleHeightBarSubviewLayoutAttributes.h ├── BLKFlexibleHeightBarSubviewLayoutAttributes.m ├── FacebookStyleBarBehaviorDefiner.h ├── FacebookStyleBarBehaviorDefiner.m ├── SquareCashStyleBehaviorDefiner.h ├── SquareCashStyleBehaviorDefiner.m ├── UIView+BLKFlexibleHeightBarSubview.h └── UIView+BLKFlexibleHeightBarSubview.m ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/.gitignore -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/AppDelegate.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/AppDelegate.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/Close.png -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/DemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/DemoViewController.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/DemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/DemoViewController.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/FacebookStyleBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/FacebookStyleBar.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/FacebookStyleBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/FacebookStyleBar.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/FacebookStyleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/FacebookStyleViewController.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/FacebookStyleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/FacebookStyleViewController.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/Images.xcassets/ProfilePicture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/Images.xcassets/ProfilePicture.imageset/Contents.json -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/Info.plist -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/ProfilePicture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/ProfilePicture.png -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/SquareCashStyleBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/SquareCashStyleBar.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/SquareCashStyleBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/SquareCashStyleBar.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/SquareCashStyleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/SquareCashStyleViewController.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/SquareCashStyleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/SquareCashStyleViewController.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/facebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/facebook-icon.png -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/main.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar Demo/square-cash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar Demo/square-cash-icon.png -------------------------------------------------------------------------------- /BLKFlexibleHeightBar DemoTests/BLKFlexibleHeightBar_DemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar DemoTests/BLKFlexibleHeightBar_DemoTests.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar DemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar DemoTests/Info.plist -------------------------------------------------------------------------------- /BLKFlexibleHeightBar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar.podspec -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/BLKDelegateSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/BLKDelegateSplitter.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/BLKDelegateSplitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/BLKDelegateSplitter.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/BLKFlexibleHeightBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/BLKFlexibleHeightBar.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/BLKFlexibleHeightBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/BLKFlexibleHeightBar.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/BLKFlexibleHeightBarBehaviorDefiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/BLKFlexibleHeightBarBehaviorDefiner.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/BLKFlexibleHeightBarBehaviorDefiner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/BLKFlexibleHeightBarBehaviorDefiner.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/BLKFlexibleHeightBarSubviewLayoutAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/BLKFlexibleHeightBarSubviewLayoutAttributes.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/BLKFlexibleHeightBarSubviewLayoutAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/BLKFlexibleHeightBarSubviewLayoutAttributes.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/FacebookStyleBarBehaviorDefiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/FacebookStyleBarBehaviorDefiner.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/FacebookStyleBarBehaviorDefiner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/FacebookStyleBarBehaviorDefiner.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/SquareCashStyleBehaviorDefiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/SquareCashStyleBehaviorDefiner.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/SquareCashStyleBehaviorDefiner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/SquareCashStyleBehaviorDefiner.m -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/UIView+BLKFlexibleHeightBarSubview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/UIView+BLKFlexibleHeightBarSubview.h -------------------------------------------------------------------------------- /BLKFlexibleHeightBar/UIView+BLKFlexibleHeightBarSubview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/BLKFlexibleHeightBar/UIView+BLKFlexibleHeightBarSubview.m -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryankeller/BLKFlexibleHeightBar/HEAD/README.md --------------------------------------------------------------------------------