├── Demo └── demo.gif ├── ImageInNavigationBarDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── Tung.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── ImageInNavigationBarDemo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── image_name.imageset │ │ ├── Contents.json │ │ └── ca_image.jpg ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DemoTableViewController.swift └── Info.plist └── README.md /Demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/Demo/demo.gif -------------------------------------------------------------------------------- /ImageInNavigationBarDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ImageInNavigationBarDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ImageInNavigationBarDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ImageInNavigationBarDemo.xcodeproj/xcuserdata/Tung.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo.xcodeproj/xcuserdata/Tung.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ImageInNavigationBarDemo.xcodeproj/xcuserdata/Tung.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo.xcodeproj/xcuserdata/Tung.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ImageInNavigationBarDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo/AppDelegate.swift -------------------------------------------------------------------------------- /ImageInNavigationBarDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ImageInNavigationBarDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ImageInNavigationBarDemo/Assets.xcassets/image_name.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo/Assets.xcassets/image_name.imageset/Contents.json -------------------------------------------------------------------------------- /ImageInNavigationBarDemo/Assets.xcassets/image_name.imageset/ca_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo/Assets.xcassets/image_name.imageset/ca_image.jpg -------------------------------------------------------------------------------- /ImageInNavigationBarDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ImageInNavigationBarDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ImageInNavigationBarDemo/DemoTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo/DemoTableViewController.swift -------------------------------------------------------------------------------- /ImageInNavigationBarDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/ImageInNavigationBarDemo/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tungfam/ImageInNavigationBarDemo/HEAD/README.md --------------------------------------------------------------------------------