├── README.md ├── UISearchControllerDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── zhoubo.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── zhoubo.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── UISearchControllerDemo.xcscheme │ └── xcschememanagement.plist ├── UISearchControllerDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── 我的当前页icon.imageset │ │ ├── Contents.json │ │ ├── 我的当前页icon@2x.png │ │ └── 我的当前页icon@3x.png │ ├── 我的非当前页icon.imageset │ │ ├── Contents.json │ │ ├── 我的非当前页icon@2x.png │ │ └── 我的非当前页icon@3x.png │ ├── 首页当前页icon.imageset │ │ ├── Contents.json │ │ ├── 首页当前页icon@2x.png │ │ └── 首页当前页icon@3x.png │ └── 首页非当前页icon.imageset │ │ ├── Contents.json │ │ ├── 首页非当前页icon@2x.png │ │ └── 首页非当前页icon@3x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── CustomTableViewCell.h ├── CustomTableViewCell.m ├── CustomTableViewCell.xib ├── Info.plist ├── SearchDetailVC.h ├── SearchDetailVC.m ├── SearchDetailVC.xib ├── SearchViewController.h ├── SearchViewController.m ├── SearchViewController.xib ├── ViewController.h ├── ViewController.m ├── ViewController.xib ├── base │ ├── BaseNavigationController.h │ ├── BaseNavigationController.m │ ├── BaseTabBarController.h │ └── BaseTabBarController.m └── main.m ├── UISearchControllerDemoTests ├── Info.plist └── UISearchControllerDemeTests.m ├── UISearchControllerDemoUITests ├── Info.plist └── UISearchControllerDemeUITests.m └── UsingSuggestedSearchesWithASearchController.zip /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/README.md -------------------------------------------------------------------------------- /UISearchControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UISearchControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UISearchControllerDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /UISearchControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/zhoubo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/zhoubo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UISearchControllerDemo.xcodeproj/xcuserdata/zhoubo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo.xcodeproj/xcuserdata/zhoubo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /UISearchControllerDemo.xcodeproj/xcuserdata/zhoubo.xcuserdatad/xcschemes/UISearchControllerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo.xcodeproj/xcuserdata/zhoubo.xcuserdatad/xcschemes/UISearchControllerDemo.xcscheme -------------------------------------------------------------------------------- /UISearchControllerDemo.xcodeproj/xcuserdata/zhoubo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo.xcodeproj/xcuserdata/zhoubo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UISearchControllerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/AppDelegate.h -------------------------------------------------------------------------------- /UISearchControllerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/AppDelegate.m -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/我的当前页icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/我的当前页icon.imageset/Contents.json -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/我的当前页icon.imageset/我的当前页icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/我的当前页icon.imageset/我的当前页icon@2x.png -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/我的当前页icon.imageset/我的当前页icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/我的当前页icon.imageset/我的当前页icon@3x.png -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/我的非当前页icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/我的非当前页icon.imageset/Contents.json -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/我的非当前页icon.imageset/我的非当前页icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/我的非当前页icon.imageset/我的非当前页icon@2x.png -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/我的非当前页icon.imageset/我的非当前页icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/我的非当前页icon.imageset/我的非当前页icon@3x.png -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/首页当前页icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/首页当前页icon.imageset/Contents.json -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/首页当前页icon.imageset/首页当前页icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/首页当前页icon.imageset/首页当前页icon@2x.png -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/首页当前页icon.imageset/首页当前页icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/首页当前页icon.imageset/首页当前页icon@3x.png -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/首页非当前页icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/首页非当前页icon.imageset/Contents.json -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/首页非当前页icon.imageset/首页非当前页icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/首页非当前页icon.imageset/首页非当前页icon@2x.png -------------------------------------------------------------------------------- /UISearchControllerDemo/Assets.xcassets/首页非当前页icon.imageset/首页非当前页icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Assets.xcassets/首页非当前页icon.imageset/首页非当前页icon@3x.png -------------------------------------------------------------------------------- /UISearchControllerDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UISearchControllerDemo/CustomTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/CustomTableViewCell.h -------------------------------------------------------------------------------- /UISearchControllerDemo/CustomTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/CustomTableViewCell.m -------------------------------------------------------------------------------- /UISearchControllerDemo/CustomTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/CustomTableViewCell.xib -------------------------------------------------------------------------------- /UISearchControllerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/Info.plist -------------------------------------------------------------------------------- /UISearchControllerDemo/SearchDetailVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/SearchDetailVC.h -------------------------------------------------------------------------------- /UISearchControllerDemo/SearchDetailVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/SearchDetailVC.m -------------------------------------------------------------------------------- /UISearchControllerDemo/SearchDetailVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/SearchDetailVC.xib -------------------------------------------------------------------------------- /UISearchControllerDemo/SearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/SearchViewController.h -------------------------------------------------------------------------------- /UISearchControllerDemo/SearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/SearchViewController.m -------------------------------------------------------------------------------- /UISearchControllerDemo/SearchViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/SearchViewController.xib -------------------------------------------------------------------------------- /UISearchControllerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/ViewController.h -------------------------------------------------------------------------------- /UISearchControllerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/ViewController.m -------------------------------------------------------------------------------- /UISearchControllerDemo/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/ViewController.xib -------------------------------------------------------------------------------- /UISearchControllerDemo/base/BaseNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/base/BaseNavigationController.h -------------------------------------------------------------------------------- /UISearchControllerDemo/base/BaseNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/base/BaseNavigationController.m -------------------------------------------------------------------------------- /UISearchControllerDemo/base/BaseTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/base/BaseTabBarController.h -------------------------------------------------------------------------------- /UISearchControllerDemo/base/BaseTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/base/BaseTabBarController.m -------------------------------------------------------------------------------- /UISearchControllerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemo/main.m -------------------------------------------------------------------------------- /UISearchControllerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemoTests/Info.plist -------------------------------------------------------------------------------- /UISearchControllerDemoTests/UISearchControllerDemeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemoTests/UISearchControllerDemeTests.m -------------------------------------------------------------------------------- /UISearchControllerDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemoUITests/Info.plist -------------------------------------------------------------------------------- /UISearchControllerDemoUITests/UISearchControllerDemeUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UISearchControllerDemoUITests/UISearchControllerDemeUITests.m -------------------------------------------------------------------------------- /UsingSuggestedSearchesWithASearchController.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyuhuaping/UISearchControllerDemo/HEAD/UsingSuggestedSearchesWithASearchController.zip --------------------------------------------------------------------------------