├── .DS_Store ├── .gitignore ├── .travis.yml ├── EVNCustomSearchBar.podspec ├── EVNCustomSearchBar ├── .DS_Store ├── EVNCustomSearchBar.bundle │ ├── Root.plist │ ├── en.lproj │ │ └── Root.strings │ ├── searchImageBlack@2x.png │ ├── searchImageBlue@2x.png │ ├── searchImageDark@2x.png │ ├── searchImageGreen@2x.png │ └── searchImageTextColor@2x.png ├── EVNCustomSearchBar.h └── EVNCustomSearchBar.m ├── EVNCustomSearchBarDemo ├── .DS_Store ├── EVNCustomSearchBar.gif ├── EVNCustomSearchBar.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── EVNCustomSearchBar2.gif └── EVNCustomSearchBarDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Header.h │ ├── Helper.h │ ├── Helper.m │ ├── Info.plist │ ├── LeftRightViewController.h │ ├── LeftRightViewController.m │ ├── LeftViewController.h │ ├── LeftViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/.travis.yml -------------------------------------------------------------------------------- /EVNCustomSearchBar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar.podspec -------------------------------------------------------------------------------- /EVNCustomSearchBar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/.DS_Store -------------------------------------------------------------------------------- /EVNCustomSearchBar/EVNCustomSearchBar.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/EVNCustomSearchBar.bundle/Root.plist -------------------------------------------------------------------------------- /EVNCustomSearchBar/EVNCustomSearchBar.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/EVNCustomSearchBar.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageBlack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageBlack@2x.png -------------------------------------------------------------------------------- /EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageBlue@2x.png -------------------------------------------------------------------------------- /EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageDark@2x.png -------------------------------------------------------------------------------- /EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageGreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageGreen@2x.png -------------------------------------------------------------------------------- /EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageTextColor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/EVNCustomSearchBar.bundle/searchImageTextColor@2x.png -------------------------------------------------------------------------------- /EVNCustomSearchBar/EVNCustomSearchBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/EVNCustomSearchBar.h -------------------------------------------------------------------------------- /EVNCustomSearchBar/EVNCustomSearchBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBar/EVNCustomSearchBar.m -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/.DS_Store -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBar.gif -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBar2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBar2.gif -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/AppDelegate.h -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/AppDelegate.m -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Header.h -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Helper.h -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Helper.m -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/Info.plist -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/LeftRightViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/LeftRightViewController.h -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/LeftRightViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/LeftRightViewController.m -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/LeftViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/LeftViewController.h -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/LeftViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/LeftViewController.m -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/ViewController.h -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/ViewController.m -------------------------------------------------------------------------------- /EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/EVNCustomSearchBarDemo/EVNCustomSearchBarDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonghongyan/EVNCustomSearchBar/HEAD/README.md --------------------------------------------------------------------------------