├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json ├── clear.imageset │ ├── Contents.json │ └── cancle.png ├── guaishou.imageset │ ├── Contents.json │ └── 怪兽福利.png ├── msg.imageset │ ├── Contents.json │ └── message.png ├── scan.imageset │ ├── Contents.json │ └── scan.png └── search.imageset │ ├── Contents.json │ └── search.png ├── Base.lproj └── LaunchScreen.storyboard ├── Info.plist ├── OHSearchBarInNaviBar.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── xing.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── xing.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── OHSearchBarInNaviBar ├── AppDelegate.h ├── AppDelegate.m ├── OHHomeViewController.h ├── OHHomeViewController.m ├── OHSearchBar.h ├── OHSearchBar.m ├── OHSearchController.h ├── OHSearchController.m ├── OHSearchViewController.h ├── OHSearchViewController.m └── PrefixHeader.pch ├── README.md └── main.m /Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/clear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/clear.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/clear.imageset/cancle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/clear.imageset/cancle.png -------------------------------------------------------------------------------- /Assets.xcassets/guaishou.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/guaishou.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/guaishou.imageset/怪兽福利.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/guaishou.imageset/怪兽福利.png -------------------------------------------------------------------------------- /Assets.xcassets/msg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/msg.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/msg.imageset/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/msg.imageset/message.png -------------------------------------------------------------------------------- /Assets.xcassets/scan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/scan.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/scan.imageset/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/scan.imageset/scan.png -------------------------------------------------------------------------------- /Assets.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/search.imageset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/search.imageset/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Assets.xcassets/search.imageset/search.png -------------------------------------------------------------------------------- /Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/Info.plist -------------------------------------------------------------------------------- /OHSearchBarInNaviBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OHSearchBarInNaviBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OHSearchBarInNaviBar.xcodeproj/project.xcworkspace/xcuserdata/xing.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar.xcodeproj/project.xcworkspace/xcuserdata/xing.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /OHSearchBarInNaviBar.xcodeproj/xcuserdata/xing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar.xcodeproj/xcuserdata/xing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /OHSearchBarInNaviBar.xcodeproj/xcuserdata/xing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar.xcodeproj/xcuserdata/xing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/AppDelegate.h -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/AppDelegate.m -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/OHHomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/OHHomeViewController.h -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/OHHomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/OHHomeViewController.m -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/OHSearchBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/OHSearchBar.h -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/OHSearchBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/OHSearchBar.m -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/OHSearchController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/OHSearchController.h -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/OHSearchController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/OHSearchController.m -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/OHSearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/OHSearchViewController.h -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/OHSearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/OHSearchViewController.m -------------------------------------------------------------------------------- /OHSearchBarInNaviBar/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/OHSearchBarInNaviBar/PrefixHeader.pch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/README.md -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sinter0/OHSearchBarInNaviBar/HEAD/main.m --------------------------------------------------------------------------------