├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── VVManager.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-VVManager_Example │ │ ├── Info.plist │ │ ├── Pods-VVManager_Example-acknowledgements.markdown │ │ ├── Pods-VVManager_Example-acknowledgements.plist │ │ ├── Pods-VVManager_Example-dummy.m │ │ ├── Pods-VVManager_Example-frameworks.sh │ │ ├── Pods-VVManager_Example-resources.sh │ │ ├── Pods-VVManager_Example-umbrella.h │ │ ├── Pods-VVManager_Example.debug.xcconfig │ │ ├── Pods-VVManager_Example.modulemap │ │ └── Pods-VVManager_Example.release.xcconfig │ │ ├── Pods-VVManager_Tests │ │ ├── Info.plist │ │ ├── Pods-VVManager_Tests-acknowledgements.markdown │ │ ├── Pods-VVManager_Tests-acknowledgements.plist │ │ ├── Pods-VVManager_Tests-dummy.m │ │ ├── Pods-VVManager_Tests-frameworks.sh │ │ ├── Pods-VVManager_Tests-resources.sh │ │ ├── Pods-VVManager_Tests-umbrella.h │ │ ├── Pods-VVManager_Tests.debug.xcconfig │ │ ├── Pods-VVManager_Tests.modulemap │ │ └── Pods-VVManager_Tests.release.xcconfig │ │ └── VVManager │ │ ├── Info.plist │ │ ├── VVManager-dummy.m │ │ ├── VVManager-prefix.pch │ │ ├── VVManager-umbrella.h │ │ ├── VVManager.modulemap │ │ └── VVManager.xcconfig ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── VVManager.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── VVManager-Example.xcscheme ├── VVManager.xcworkspace │ └── contents.xcworkspacedata └── VVManager │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Main.storyboard │ ├── Second.storyboard │ ├── VVAppDelegate.h │ ├── VVAppDelegate.m │ ├── VVBookmarkDetailController.h │ ├── VVBookmarkDetailController.m │ ├── VVBookmarkMainController.h │ ├── VVBookmarkMainController.m │ ├── VVFavoriteDetailController.h │ ├── VVFavoriteDetailController.m │ ├── VVFavoriteMainController.h │ ├── VVFavoriteMainController.m │ ├── VVManager-Info.plist │ ├── VVManager-Prefix.pch │ ├── VVRecentsDetailController.h │ ├── VVRecentsDetailController.m │ ├── VVRecentsMainController.h │ ├── VVRecentsMainController.m │ ├── VVTableViewController.h │ ├── VVTableViewController.m │ ├── VVUserDetailController.h │ ├── VVUserDetailController.m │ ├── VVUserMainController.h │ ├── VVUserMainController.m │ ├── VVXibViewController.h │ ├── VVXibViewController.m │ ├── VVXibViewController.xib │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── LICENSE ├── README.md ├── VVManager.podspec ├── VVManager ├── NSObject+VVRuntime.h ├── NSObject+VVRuntime.m ├── UIViewController+VVRecord.h ├── UIViewController+VVRecord.m ├── VVHop.h ├── VVHop.m ├── VVManager.h └── VVManager.m └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/VVManager.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Local Podspecs/VVManager.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Example/Pods-VVManager_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/Pods-VVManager_Tests/Pods-VVManager_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VVManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/VVManager/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VVManager/VVManager-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/VVManager/VVManager-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VVManager/VVManager-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/VVManager/VVManager-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VVManager/VVManager-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/VVManager/VVManager-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VVManager/VVManager.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/VVManager/VVManager.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VVManager/VVManager.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Pods/Target Support Files/VVManager/VVManager.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/VVManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/VVManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/VVManager.xcodeproj/xcshareddata/xcschemes/VVManager-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager.xcodeproj/xcshareddata/xcschemes/VVManager-Example.xcscheme -------------------------------------------------------------------------------- /Example/VVManager.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/VVManager/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/VVManager/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/VVManager/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/Main.storyboard -------------------------------------------------------------------------------- /Example/VVManager/Second.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/Second.storyboard -------------------------------------------------------------------------------- /Example/VVManager/VVAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVAppDelegate.h -------------------------------------------------------------------------------- /Example/VVManager/VVAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVAppDelegate.m -------------------------------------------------------------------------------- /Example/VVManager/VVBookmarkDetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVBookmarkDetailController.h -------------------------------------------------------------------------------- /Example/VVManager/VVBookmarkDetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVBookmarkDetailController.m -------------------------------------------------------------------------------- /Example/VVManager/VVBookmarkMainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVBookmarkMainController.h -------------------------------------------------------------------------------- /Example/VVManager/VVBookmarkMainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVBookmarkMainController.m -------------------------------------------------------------------------------- /Example/VVManager/VVFavoriteDetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVFavoriteDetailController.h -------------------------------------------------------------------------------- /Example/VVManager/VVFavoriteDetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVFavoriteDetailController.m -------------------------------------------------------------------------------- /Example/VVManager/VVFavoriteMainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVFavoriteMainController.h -------------------------------------------------------------------------------- /Example/VVManager/VVFavoriteMainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVFavoriteMainController.m -------------------------------------------------------------------------------- /Example/VVManager/VVManager-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVManager-Info.plist -------------------------------------------------------------------------------- /Example/VVManager/VVManager-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVManager-Prefix.pch -------------------------------------------------------------------------------- /Example/VVManager/VVRecentsDetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVRecentsDetailController.h -------------------------------------------------------------------------------- /Example/VVManager/VVRecentsDetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVRecentsDetailController.m -------------------------------------------------------------------------------- /Example/VVManager/VVRecentsMainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVRecentsMainController.h -------------------------------------------------------------------------------- /Example/VVManager/VVRecentsMainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVRecentsMainController.m -------------------------------------------------------------------------------- /Example/VVManager/VVTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVTableViewController.h -------------------------------------------------------------------------------- /Example/VVManager/VVTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVTableViewController.m -------------------------------------------------------------------------------- /Example/VVManager/VVUserDetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVUserDetailController.h -------------------------------------------------------------------------------- /Example/VVManager/VVUserDetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVUserDetailController.m -------------------------------------------------------------------------------- /Example/VVManager/VVUserMainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVUserMainController.h -------------------------------------------------------------------------------- /Example/VVManager/VVUserMainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVUserMainController.m -------------------------------------------------------------------------------- /Example/VVManager/VVXibViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVXibViewController.h -------------------------------------------------------------------------------- /Example/VVManager/VVXibViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVXibViewController.m -------------------------------------------------------------------------------- /Example/VVManager/VVXibViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/VVXibViewController.xib -------------------------------------------------------------------------------- /Example/VVManager/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/VVManager/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/Example/VVManager/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/README.md -------------------------------------------------------------------------------- /VVManager.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/VVManager.podspec -------------------------------------------------------------------------------- /VVManager/NSObject+VVRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/VVManager/NSObject+VVRuntime.h -------------------------------------------------------------------------------- /VVManager/NSObject+VVRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/VVManager/NSObject+VVRuntime.m -------------------------------------------------------------------------------- /VVManager/UIViewController+VVRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/VVManager/UIViewController+VVRecord.h -------------------------------------------------------------------------------- /VVManager/UIViewController+VVRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/VVManager/UIViewController+VVRecord.m -------------------------------------------------------------------------------- /VVManager/VVHop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/VVManager/VVHop.h -------------------------------------------------------------------------------- /VVManager/VVHop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/VVManager/VVHop.m -------------------------------------------------------------------------------- /VVManager/VVManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/VVManager/VVManager.h -------------------------------------------------------------------------------- /VVManager/VVManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pozi119/VVManager/HEAD/VVManager/VVManager.m -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------