├── .gitignore ├── Example ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Demo │ ├── ResultFuzzyViewController.h │ ├── ResultFuzzyViewController.m │ ├── ResultViewController.h │ ├── ResultViewController.m │ ├── ViewController.h │ ├── ViewController.m │ ├── searchEditModel.h │ └── searchEditModel.m ├── Info.plist └── main.m ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ └── SDWebImage │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImageTransition.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ └── Public │ │ └── SDWebImage │ │ ├── NSButton+WebCache.h │ │ ├── NSData+ImageContentType.h │ │ ├── SDAnimatedImageRep.h │ │ ├── SDImageCache.h │ │ ├── SDImageCacheConfig.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImageTransition.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ ├── UIView+WebCache.h │ │ └── UIView+WebCacheOperation.h ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── zhuzhiqin.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-ZQSearchController.xcscheme │ │ ├── Pods-ZQSearchControllerTests.xcscheme │ │ ├── Pods-ZQSearchControllerUITests.xcscheme │ │ ├── SDWebImage.xcscheme │ │ └── xcschememanagement.plist ├── SDWebImage │ ├── LICENSE │ └── README.md └── Target Support Files │ ├── Pods-ZQSearchController │ ├── Pods-ZQSearchController-acknowledgements.markdown │ ├── Pods-ZQSearchController-acknowledgements.plist │ ├── Pods-ZQSearchController-dummy.m │ ├── Pods-ZQSearchController-frameworks.sh │ ├── Pods-ZQSearchController-resources.sh │ ├── Pods-ZQSearchController.debug.xcconfig │ └── Pods-ZQSearchController.release.xcconfig │ ├── Pods-ZQSearchControllerTests │ ├── Pods-ZQSearchControllerTests-acknowledgements.markdown │ ├── Pods-ZQSearchControllerTests-acknowledgements.plist │ ├── Pods-ZQSearchControllerTests-dummy.m │ ├── Pods-ZQSearchControllerTests-frameworks.sh │ ├── Pods-ZQSearchControllerTests-resources.sh │ ├── Pods-ZQSearchControllerTests.debug.xcconfig │ └── Pods-ZQSearchControllerTests.release.xcconfig │ ├── Pods-ZQSearchControllerUITests │ ├── Pods-ZQSearchControllerUITests-acknowledgements.markdown │ ├── Pods-ZQSearchControllerUITests-acknowledgements.plist │ ├── Pods-ZQSearchControllerUITests-dummy.m │ ├── Pods-ZQSearchControllerUITests-frameworks.sh │ ├── Pods-ZQSearchControllerUITests-resources.sh │ ├── Pods-ZQSearchControllerUITests.debug.xcconfig │ └── Pods-ZQSearchControllerUITests.release.xcconfig │ └── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig ├── README.md ├── ZQSearch.podspec ├── ZQSearchController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── zhuzhiqin.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── zhuzhiqin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── ZQSearchController.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── zhuzhiqin.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── ZQSearchController ├── Classes │ └── ZQSearch │ │ ├── Category │ │ ├── UIColor+ZQSearch.h │ │ └── UIColor+ZQSearch.m │ │ ├── Controller │ │ ├── ZQSearchEditViewController.h │ │ ├── ZQSearchEditViewController.m │ │ ├── ZQSearchNormalViewController.h │ │ ├── ZQSearchNormalViewController.m │ │ ├── ZQSearchViewController.h │ │ └── ZQSearchViewController.m │ │ ├── Layout │ │ ├── ZQSearchNormalLayout.h │ │ └── ZQSearchNormalLayout.m │ │ ├── View │ │ ├── ZQSearchCollectionReusableView.h │ │ ├── ZQSearchCollectionReusableView.m │ │ ├── ZQSearchConfirmCell.h │ │ ├── ZQSearchConfirmCell.m │ │ ├── ZQSearchEditBaseCell.h │ │ ├── ZQSearchEditBaseCell.m │ │ ├── ZQSearchEditNormalCell.h │ │ ├── ZQSearchEditNormalCell.m │ │ ├── ZQSearchNormalCell.h │ │ └── ZQSearchNormalCell.m │ │ └── ZQSearchConst.h └── Images │ ├── ZQSearch.podspec │ ├── default@3x.png │ ├── empty.png │ ├── ic_back@2x.png │ ├── ic_search@3x.png │ └── icon_x.png ├── ZQSearchControllerTests ├── Info.plist └── ZQSearchControllerTests.m ├── ZQSearchControllerUITests ├── Info.plist └── ZQSearchControllerUITests.m └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Demo/ResultFuzzyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Demo/ResultFuzzyViewController.h -------------------------------------------------------------------------------- /Example/Demo/ResultFuzzyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Demo/ResultFuzzyViewController.m -------------------------------------------------------------------------------- /Example/Demo/ResultViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Demo/ResultViewController.h -------------------------------------------------------------------------------- /Example/Demo/ResultViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Demo/ResultViewController.m -------------------------------------------------------------------------------- /Example/Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Demo/ViewController.h -------------------------------------------------------------------------------- /Example/Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Demo/ViewController.m -------------------------------------------------------------------------------- /Example/Demo/searchEditModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Demo/searchEditModel.h -------------------------------------------------------------------------------- /Example/Demo/searchEditModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Demo/searchEditModel.m -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Example/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/Pods-ZQSearchController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/Pods-ZQSearchController.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/Pods-ZQSearchControllerTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/Pods-ZQSearchControllerTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/Pods-ZQSearchControllerUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/Pods-ZQSearchControllerUITests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Pods.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchController/Pods-ZQSearchController.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerTests/Pods-ZQSearchControllerTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/Pods-ZQSearchControllerUITests/Pods-ZQSearchControllerUITests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/README.md -------------------------------------------------------------------------------- /ZQSearch.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearch.podspec -------------------------------------------------------------------------------- /ZQSearchController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZQSearchController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZQSearchController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ZQSearchController.xcodeproj/project.xcworkspace/xcuserdata/zhuzhiqin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcodeproj/project.xcworkspace/xcuserdata/zhuzhiqin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZQSearchController.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ZQSearchController.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcodeproj/xcuserdata/zhuzhiqin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ZQSearchController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZQSearchController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ZQSearchController.xcworkspace/xcuserdata/zhuzhiqin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcworkspace/xcuserdata/zhuzhiqin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZQSearchController.xcworkspace/xcuserdata/zhuzhiqin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController.xcworkspace/xcuserdata/zhuzhiqin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Category/UIColor+ZQSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Category/UIColor+ZQSearch.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Category/UIColor+ZQSearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Category/UIColor+ZQSearch.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Controller/ZQSearchEditViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Controller/ZQSearchEditViewController.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Controller/ZQSearchEditViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Controller/ZQSearchEditViewController.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Controller/ZQSearchNormalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Controller/ZQSearchNormalViewController.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Controller/ZQSearchNormalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Controller/ZQSearchNormalViewController.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Controller/ZQSearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Controller/ZQSearchViewController.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Controller/ZQSearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Controller/ZQSearchViewController.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Layout/ZQSearchNormalLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Layout/ZQSearchNormalLayout.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/Layout/ZQSearchNormalLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/Layout/ZQSearchNormalLayout.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchCollectionReusableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchCollectionReusableView.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchCollectionReusableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchCollectionReusableView.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchConfirmCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchConfirmCell.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchConfirmCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchConfirmCell.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchEditBaseCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchEditBaseCell.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchEditBaseCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchEditBaseCell.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchEditNormalCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchEditNormalCell.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchEditNormalCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchEditNormalCell.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchNormalCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchNormalCell.h -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/View/ZQSearchNormalCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/View/ZQSearchNormalCell.m -------------------------------------------------------------------------------- /ZQSearchController/Classes/ZQSearch/ZQSearchConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Classes/ZQSearch/ZQSearchConst.h -------------------------------------------------------------------------------- /ZQSearchController/Images/ZQSearch.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Images/ZQSearch.podspec -------------------------------------------------------------------------------- /ZQSearchController/Images/default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Images/default@3x.png -------------------------------------------------------------------------------- /ZQSearchController/Images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Images/empty.png -------------------------------------------------------------------------------- /ZQSearchController/Images/ic_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Images/ic_back@2x.png -------------------------------------------------------------------------------- /ZQSearchController/Images/ic_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Images/ic_search@3x.png -------------------------------------------------------------------------------- /ZQSearchController/Images/icon_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchController/Images/icon_x.png -------------------------------------------------------------------------------- /ZQSearchControllerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchControllerTests/Info.plist -------------------------------------------------------------------------------- /ZQSearchControllerTests/ZQSearchControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchControllerTests/ZQSearchControllerTests.m -------------------------------------------------------------------------------- /ZQSearchControllerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchControllerUITests/Info.plist -------------------------------------------------------------------------------- /ZQSearchControllerUITests/ZQSearchControllerUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/ZQSearchControllerUITests/ZQSearchControllerUITests.m -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabbitmouse/ZQSearchController/HEAD/demo.gif --------------------------------------------------------------------------------