├── .gitignore ├── LICENSE ├── Project ├── XHDrawerController.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── XHDrawerController │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 120.png │ │ │ ├── 152.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ └── Default@2x.png │ │ ├── MenuBackground.imageset │ │ │ ├── Contents.json │ │ │ └── MenuBackground@2x.png │ │ └── me.imageset │ │ │ ├── Contents.json │ │ │ └── 未标题-1.png │ ├── XHDrawerController-Info.plist │ ├── XHDrawerController-Prefix.pch │ ├── XHExampleCenterSideDrawerViewController.h │ ├── XHExampleCenterSideDrawerViewController.m │ ├── XHExampleLeftSideDrawerViewController.h │ ├── XHExampleLeftSideDrawerViewController.m │ ├── XHExampleRightSideDrawerViewController.h │ ├── XHExampleRightSideDrawerViewController.m │ ├── XHExampleSideDrawerViewController.h │ ├── XHExampleSideDrawerViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── XHDrawerControllerSDK │ ├── XHDrawerControllerSDK-Info.plist │ ├── XHDrawerControllerSDK-Prefix.pch │ └── en.lproj │ │ └── InfoPlist.strings └── XHDrawerControllerTests │ ├── XHDrawerControllerTests-Info.plist │ ├── XHDrawerControllerTests.m │ └── en.lproj │ └── InfoPlist.strings ├── README.md ├── Screenshots └── XHDrawerController.gif ├── Source ├── XHDrawerController.h ├── XHDrawerController.m ├── XHDrawerControllerHeader.h ├── XHZoomDrawerView.h └── XHZoomDrawerView.m └── XHDrawerController.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/LICENSE -------------------------------------------------------------------------------- /Project/XHDrawerController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Project/XHDrawerController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Project/XHDrawerController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/AppDelegate.h -------------------------------------------------------------------------------- /Project/XHDrawerController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/AppDelegate.m -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/MenuBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/MenuBackground.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/MenuBackground.imageset/MenuBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/MenuBackground.imageset/MenuBackground@2x.png -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/me.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/me.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHDrawerController/Images.xcassets/me.imageset/未标题-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/Images.xcassets/me.imageset/未标题-1.png -------------------------------------------------------------------------------- /Project/XHDrawerController/XHDrawerController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHDrawerController-Info.plist -------------------------------------------------------------------------------- /Project/XHDrawerController/XHDrawerController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHDrawerController-Prefix.pch -------------------------------------------------------------------------------- /Project/XHDrawerController/XHExampleCenterSideDrawerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHExampleCenterSideDrawerViewController.h -------------------------------------------------------------------------------- /Project/XHDrawerController/XHExampleCenterSideDrawerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHExampleCenterSideDrawerViewController.m -------------------------------------------------------------------------------- /Project/XHDrawerController/XHExampleLeftSideDrawerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHExampleLeftSideDrawerViewController.h -------------------------------------------------------------------------------- /Project/XHDrawerController/XHExampleLeftSideDrawerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHExampleLeftSideDrawerViewController.m -------------------------------------------------------------------------------- /Project/XHDrawerController/XHExampleRightSideDrawerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHExampleRightSideDrawerViewController.h -------------------------------------------------------------------------------- /Project/XHDrawerController/XHExampleRightSideDrawerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHExampleRightSideDrawerViewController.m -------------------------------------------------------------------------------- /Project/XHDrawerController/XHExampleSideDrawerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHExampleSideDrawerViewController.h -------------------------------------------------------------------------------- /Project/XHDrawerController/XHExampleSideDrawerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/XHExampleSideDrawerViewController.m -------------------------------------------------------------------------------- /Project/XHDrawerController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Project/XHDrawerController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerController/main.m -------------------------------------------------------------------------------- /Project/XHDrawerControllerSDK/XHDrawerControllerSDK-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerControllerSDK/XHDrawerControllerSDK-Info.plist -------------------------------------------------------------------------------- /Project/XHDrawerControllerSDK/XHDrawerControllerSDK-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerControllerSDK/XHDrawerControllerSDK-Prefix.pch -------------------------------------------------------------------------------- /Project/XHDrawerControllerSDK/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Project/XHDrawerControllerTests/XHDrawerControllerTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerControllerTests/XHDrawerControllerTests-Info.plist -------------------------------------------------------------------------------- /Project/XHDrawerControllerTests/XHDrawerControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Project/XHDrawerControllerTests/XHDrawerControllerTests.m -------------------------------------------------------------------------------- /Project/XHDrawerControllerTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/XHDrawerController.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Screenshots/XHDrawerController.gif -------------------------------------------------------------------------------- /Source/XHDrawerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Source/XHDrawerController.h -------------------------------------------------------------------------------- /Source/XHDrawerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Source/XHDrawerController.m -------------------------------------------------------------------------------- /Source/XHDrawerControllerHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Source/XHDrawerControllerHeader.h -------------------------------------------------------------------------------- /Source/XHZoomDrawerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Source/XHZoomDrawerView.h -------------------------------------------------------------------------------- /Source/XHZoomDrawerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/Source/XHZoomDrawerView.m -------------------------------------------------------------------------------- /XHDrawerController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHDrawerController/HEAD/XHDrawerController.podspec --------------------------------------------------------------------------------