├── .gitignore ├── Example ├── LDONavigationSubtitleView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme ├── LDONavigationSubtitleView.xcworkspace │ └── contents.xcworkspacedata ├── LDONavigationSubtitleView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── LDONavigationSubtitleView-Info.plist │ ├── LDONavigationSubtitleView-Prefix.pch │ ├── LaunchScreen.storyboard │ ├── Main.storyboard │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ ├── Private │ │ └── LDONavigationSubtitleView │ │ │ └── LDONavigationSubtitleView.h │ └── Public │ │ └── LDONavigationSubtitleView │ │ └── LDONavigationSubtitleView.h │ ├── Local Podspecs │ └── LDONavigationSubtitleView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── LDONavigationSubtitleView.xcscheme │ └── Target Support Files │ ├── LDONavigationSubtitleView │ ├── LDONavigationSubtitleView-Private.xcconfig │ ├── LDONavigationSubtitleView-dummy.m │ ├── LDONavigationSubtitleView-prefix.pch │ └── LDONavigationSubtitleView.xcconfig │ └── Pods-LDONavigationSubtitleView_Example │ ├── Pods-LDONavigationSubtitleView_Example-acknowledgements.markdown │ ├── Pods-LDONavigationSubtitleView_Example-acknowledgements.plist │ ├── Pods-LDONavigationSubtitleView_Example-dummy.m │ ├── Pods-LDONavigationSubtitleView_Example-resources.sh │ ├── Pods-LDONavigationSubtitleView_Example.debug.xcconfig │ └── Pods-LDONavigationSubtitleView_Example.release.xcconfig ├── LDONavigationSubtitleView.podspec ├── LICENSE ├── Pod └── Classes │ ├── LDONavigationSubtitleView.h │ └── LDONavigationSubtitleView.m ├── README.md ├── Screenshots └── demo_app.png └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/AppDelegate.h -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/AppDelegate.m -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/LDONavigationSubtitleView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/LDONavigationSubtitleView-Info.plist -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/LDONavigationSubtitleView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/LDONavigationSubtitleView-Prefix.pch -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/Main.storyboard -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/ViewController.h -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/ViewController.m -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/LDONavigationSubtitleView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/LDONavigationSubtitleView/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LDONavigationSubtitleView/LDONavigationSubtitleView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LDONavigationSubtitleView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LDONavigationSubtitleView/LDONavigationSubtitleView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LDONavigationSubtitleView.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LDONavigationSubtitleView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Local Podspecs/LDONavigationSubtitleView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/LDONavigationSubtitleView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/LDONavigationSubtitleView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LDONavigationSubtitleView/LDONavigationSubtitleView-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Target Support Files/LDONavigationSubtitleView/LDONavigationSubtitleView-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LDONavigationSubtitleView/LDONavigationSubtitleView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Target Support Files/LDONavigationSubtitleView/LDONavigationSubtitleView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LDONavigationSubtitleView/LDONavigationSubtitleView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Target Support Files/LDONavigationSubtitleView/LDONavigationSubtitleView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LDONavigationSubtitleView/LDONavigationSubtitleView.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Example/Pods/Target Support Files/Pods-LDONavigationSubtitleView_Example/Pods-LDONavigationSubtitleView_Example.release.xcconfig -------------------------------------------------------------------------------- /LDONavigationSubtitleView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/LDONavigationSubtitleView.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Classes/LDONavigationSubtitleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Pod/Classes/LDONavigationSubtitleView.h -------------------------------------------------------------------------------- /Pod/Classes/LDONavigationSubtitleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Pod/Classes/LDONavigationSubtitleView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/demo_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lurado/LDONavigationSubtitleView/HEAD/Screenshots/demo_app.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------