├── .gitignore ├── Example ├── HGPersonalCenterExtend.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── HGPersonalCenterExtend.xcscheme │ └── xcuserdata │ │ └── arch.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── HGPersonalCenterExtend.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── arch.xcuserdatad │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── HGPersonalCenterExtend │ ├── Base │ │ └── Controllers │ │ │ ├── HGBaseViewController.h │ │ │ ├── HGBaseViewController.m │ │ │ ├── HGNestedScrollViewController.h │ │ │ └── HGNestedScrollViewController.m │ ├── Controllers │ │ ├── HGHomeViewController.h │ │ ├── HGHomeViewController.m │ │ ├── HGMessageViewController.h │ │ ├── HGMessageViewController.m │ │ ├── HGPersonalCenterViewController.h │ │ ├── HGPersonalCenterViewController.m │ │ └── PageViewControllers │ │ │ ├── HGFirstViewController.h │ │ │ ├── HGFirstViewController.m │ │ │ ├── HGSecondViewController.h │ │ │ ├── HGSecondViewController.m │ │ │ ├── HGThirdViewController.h │ │ │ └── HGThirdViewController.m │ ├── Info.plist │ ├── Modules │ │ ├── HGAlignmentAdjustButton.h │ │ └── HGAlignmentAdjustButton.m │ ├── Tools │ │ ├── HGDeviceHelper.h │ │ └── HGDeviceHelper.m │ └── Views │ │ ├── HGDoraemonCell.h │ │ ├── HGDoraemonCell.m │ │ ├── HGDoraemonCell.xib │ │ ├── HGDoraemonCollectionViewCell.h │ │ ├── HGDoraemonCollectionViewCell.m │ │ ├── HGDoraemonCollectionViewCell.xib │ │ ├── HGPersonalCenterHeaderView.h │ │ └── HGPersonalCenterHeaderView.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── FDFullscreenPopGesture │ │ ├── FDFullscreenPopGesture │ │ │ ├── UINavigationController+FDFullscreenPopGesture.h │ │ │ └── UINavigationController+FDFullscreenPopGesture.m │ │ ├── LICENSE │ │ └── README.md │ ├── HGCategoryView │ │ ├── HGCategoryView │ │ │ ├── HGCategoryView.h │ │ │ └── HGCategoryView.m │ │ ├── LICENSE │ │ └── README.md │ ├── Local Podspecs │ │ └── HGPersonalCenterExtend.podspec.json │ ├── Manifest.lock │ ├── Masonry │ │ ├── LICENSE │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASCompositeConstraint.m │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraint.m │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASConstraintMaker.m │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASLayoutConstraint.m │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewAttribute.m │ │ │ ├── MASViewConstraint.h │ │ │ ├── MASViewConstraint.m │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASAdditions.m │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASAdditions.m │ │ │ ├── View+MASShorthandAdditions.h │ │ │ ├── ViewController+MASAdditions.h │ │ │ └── ViewController+MASAdditions.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── arch.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── FDFullscreenPopGesture.xcscheme │ │ │ ├── HGPersonalCenterExtend.xcscheme │ │ │ ├── Masonry.xcscheme │ │ │ ├── Pods-HGPersonalCenterExtend.xcscheme │ │ │ ├── Pods-HGPersonalCenterExtend_Tests.xcscheme │ │ │ ├── RTRootNavigationController.xcscheme │ │ │ └── xcschememanagement.plist │ ├── RTRootNavigationController │ │ ├── LICENSE │ │ ├── README.md │ │ └── RTRootNavigationController │ │ │ └── Classes │ │ │ ├── RTRootNavigationController.h │ │ │ ├── RTRootNavigationController.m │ │ │ ├── UIViewController+RTRootNavigationController.h │ │ │ └── UIViewController+RTRootNavigationController.m │ └── Target Support Files │ │ ├── FDFullscreenPopGesture │ │ ├── FDFullscreenPopGesture-dummy.m │ │ ├── FDFullscreenPopGesture-prefix.pch │ │ ├── FDFullscreenPopGesture.debug.xcconfig │ │ └── FDFullscreenPopGesture.release.xcconfig │ │ ├── HGCategoryView │ │ ├── HGCategoryView-dummy.m │ │ ├── HGCategoryView-prefix.pch │ │ ├── HGCategoryView.debug.xcconfig │ │ └── HGCategoryView.release.xcconfig │ │ ├── HGPersonalCenterExtend │ │ ├── HGPersonalCenterExtend-dummy.m │ │ ├── HGPersonalCenterExtend-prefix.pch │ │ ├── HGPersonalCenterExtend.debug.xcconfig │ │ └── HGPersonalCenterExtend.release.xcconfig │ │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ ├── Masonry.debug.xcconfig │ │ └── Masonry.release.xcconfig │ │ ├── Pods-HGPersonalCenterExtend │ │ ├── Pods-HGPersonalCenterExtend-acknowledgements.markdown │ │ ├── Pods-HGPersonalCenterExtend-acknowledgements.plist │ │ ├── Pods-HGPersonalCenterExtend-dummy.m │ │ ├── Pods-HGPersonalCenterExtend.debug.xcconfig │ │ └── Pods-HGPersonalCenterExtend.release.xcconfig │ │ ├── Pods-HGPersonalCenterExtend_Tests │ │ ├── Pods-HGPersonalCenterExtend_Tests-acknowledgements.markdown │ │ ├── Pods-HGPersonalCenterExtend_Tests-acknowledgements.plist │ │ ├── Pods-HGPersonalCenterExtend_Tests-dummy.m │ │ ├── Pods-HGPersonalCenterExtend_Tests.debug.xcconfig │ │ └── Pods-HGPersonalCenterExtend_Tests.release.xcconfig │ │ └── RTRootNavigationController │ │ ├── RTRootNavigationController-dummy.m │ │ ├── RTRootNavigationController-prefix.pch │ │ ├── RTRootNavigationController.debug.xcconfig │ │ └── RTRootNavigationController.release.xcconfig ├── SupportFiles │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── back.imageset │ │ │ ├── Contents.json │ │ │ └── back.pdf │ │ ├── cartoon.imageset │ │ │ ├── Contents.json │ │ │ └── cartoon.jpg │ │ ├── center_avatar.imageset │ │ │ ├── Contents.json │ │ │ └── center_avatar.jpeg │ │ └── center_bg.imageset │ │ │ ├── Contents.json │ │ │ └── center_bg.jpg │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── HGMacro.h │ ├── PrefixHeader.pch │ └── main.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── HGPersonalCenterExtend.podspec ├── HGPersonalCenterExtend ├── .gitkeep ├── HGCenterBaseTableView.h ├── HGCenterBaseTableView.m ├── HGPageViewController.h ├── HGPageViewController.m ├── HGPagesViewController.h ├── HGPagesViewController.m ├── HGPersonalCenterExtend.h ├── HGPopGestureCompatibleCollectionView.h ├── HGPopGestureCompatibleCollectionView.m ├── HGSegmentedPageViewController.h └── HGSegmentedPageViewController.m ├── LICENSE ├── README.md └── show.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend.xcodeproj/xcshareddata/xcschemes/HGPersonalCenterExtend.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend.xcodeproj/xcshareddata/xcschemes/HGPersonalCenterExtend.xcscheme -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend.xcworkspace/xcuserdata/arch.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend.xcworkspace/xcuserdata/arch.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Base/Controllers/HGBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Base/Controllers/HGBaseViewController.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Base/Controllers/HGBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Base/Controllers/HGBaseViewController.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Base/Controllers/HGNestedScrollViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Base/Controllers/HGNestedScrollViewController.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Base/Controllers/HGNestedScrollViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Base/Controllers/HGNestedScrollViewController.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/HGHomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/HGHomeViewController.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/HGHomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/HGHomeViewController.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/HGMessageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/HGMessageViewController.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/HGMessageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/HGMessageViewController.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/HGPersonalCenterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/HGPersonalCenterViewController.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/HGPersonalCenterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/HGPersonalCenterViewController.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGFirstViewController.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGFirstViewController.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGSecondViewController.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGSecondViewController.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGThirdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGThirdViewController.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGThirdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Controllers/PageViewControllers/HGThirdViewController.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Info.plist -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Modules/HGAlignmentAdjustButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Modules/HGAlignmentAdjustButton.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Modules/HGAlignmentAdjustButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Modules/HGAlignmentAdjustButton.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Tools/HGDeviceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Tools/HGDeviceHelper.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Tools/HGDeviceHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Tools/HGDeviceHelper.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Views/HGDoraemonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Views/HGDoraemonCell.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Views/HGDoraemonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Views/HGDoraemonCell.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Views/HGDoraemonCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Views/HGDoraemonCell.xib -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Views/HGDoraemonCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Views/HGDoraemonCollectionViewCell.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Views/HGDoraemonCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Views/HGDoraemonCollectionViewCell.m -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Views/HGDoraemonCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Views/HGDoraemonCollectionViewCell.xib -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Views/HGPersonalCenterHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Views/HGPersonalCenterHeaderView.h -------------------------------------------------------------------------------- /Example/HGPersonalCenterExtend/Views/HGPersonalCenterHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/HGPersonalCenterExtend/Views/HGPersonalCenterHeaderView.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.h -------------------------------------------------------------------------------- /Example/Pods/FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/FDFullscreenPopGesture/FDFullscreenPopGesture/UINavigationController+FDFullscreenPopGesture.m -------------------------------------------------------------------------------- /Example/Pods/FDFullscreenPopGesture/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/FDFullscreenPopGesture/LICENSE -------------------------------------------------------------------------------- /Example/Pods/FDFullscreenPopGesture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/FDFullscreenPopGesture/README.md -------------------------------------------------------------------------------- /Example/Pods/HGCategoryView/HGCategoryView/HGCategoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/HGCategoryView/HGCategoryView/HGCategoryView.h -------------------------------------------------------------------------------- /Example/Pods/HGCategoryView/HGCategoryView/HGCategoryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/HGCategoryView/HGCategoryView/HGCategoryView.m -------------------------------------------------------------------------------- /Example/Pods/HGCategoryView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/HGCategoryView/LICENSE -------------------------------------------------------------------------------- /Example/Pods/HGCategoryView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/HGCategoryView/README.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/HGPersonalCenterExtend.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Local Podspecs/HGPersonalCenterExtend.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/FDFullscreenPopGesture.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/FDFullscreenPopGesture.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/HGPersonalCenterExtend.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/HGPersonalCenterExtend.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/Pods-HGPersonalCenterExtend.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/Pods-HGPersonalCenterExtend.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/Pods-HGPersonalCenterExtend_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/Pods-HGPersonalCenterExtend_Tests.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/RTRootNavigationController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/RTRootNavigationController.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/arch.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/RTRootNavigationController/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/RTRootNavigationController/LICENSE -------------------------------------------------------------------------------- /Example/Pods/RTRootNavigationController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/RTRootNavigationController/README.md -------------------------------------------------------------------------------- /Example/Pods/RTRootNavigationController/RTRootNavigationController/Classes/RTRootNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/RTRootNavigationController/RTRootNavigationController/Classes/RTRootNavigationController.h -------------------------------------------------------------------------------- /Example/Pods/RTRootNavigationController/RTRootNavigationController/Classes/RTRootNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/RTRootNavigationController/RTRootNavigationController/Classes/RTRootNavigationController.m -------------------------------------------------------------------------------- /Example/Pods/RTRootNavigationController/RTRootNavigationController/Classes/UIViewController+RTRootNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/RTRootNavigationController/RTRootNavigationController/Classes/UIViewController+RTRootNavigationController.h -------------------------------------------------------------------------------- /Example/Pods/RTRootNavigationController/RTRootNavigationController/Classes/UIViewController+RTRootNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/RTRootNavigationController/RTRootNavigationController/Classes/UIViewController+RTRootNavigationController.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/FDFullscreenPopGesture/FDFullscreenPopGesture.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HGCategoryView/HGCategoryView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/HGCategoryView/HGCategoryView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HGCategoryView/HGCategoryView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/HGCategoryView/HGCategoryView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HGCategoryView/HGCategoryView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/HGCategoryView/HGCategoryView.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HGCategoryView/HGCategoryView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/HGCategoryView/HGCategoryView.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend/Pods-HGPersonalCenterExtend.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/Pods-HGPersonalCenterExtend_Tests/Pods-HGPersonalCenterExtend_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RTRootNavigationController/RTRootNavigationController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/RTRootNavigationController/RTRootNavigationController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RTRootNavigationController/RTRootNavigationController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/RTRootNavigationController/RTRootNavigationController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RTRootNavigationController/RTRootNavigationController.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/RTRootNavigationController/RTRootNavigationController.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RTRootNavigationController/RTRootNavigationController.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Pods/Target Support Files/RTRootNavigationController/RTRootNavigationController.release.xcconfig -------------------------------------------------------------------------------- /Example/SupportFiles/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/AppDelegate.h -------------------------------------------------------------------------------- /Example/SupportFiles/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/AppDelegate.m -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/back.imageset/back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/back.imageset/back.pdf -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/cartoon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/cartoon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/cartoon.imageset/cartoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/cartoon.imageset/cartoon.jpg -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/center_avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/center_avatar.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/center_avatar.imageset/center_avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/center_avatar.imageset/center_avatar.jpeg -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/center_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/center_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SupportFiles/Assets.xcassets/center_bg.imageset/center_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Assets.xcassets/center_bg.imageset/center_bg.jpg -------------------------------------------------------------------------------- /Example/SupportFiles/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/SupportFiles/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SupportFiles/HGMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/HGMacro.h -------------------------------------------------------------------------------- /Example/SupportFiles/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/PrefixHeader.pch -------------------------------------------------------------------------------- /Example/SupportFiles/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/SupportFiles/main.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HGPersonalCenterExtend.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend.podspec -------------------------------------------------------------------------------- /HGPersonalCenterExtend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGCenterBaseTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGCenterBaseTableView.h -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGCenterBaseTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGCenterBaseTableView.m -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGPageViewController.h -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGPageViewController.m -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGPagesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGPagesViewController.h -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGPagesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGPagesViewController.m -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGPersonalCenterExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGPersonalCenterExtend.h -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.h -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.m -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGSegmentedPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGSegmentedPageViewController.h -------------------------------------------------------------------------------- /HGPersonalCenterExtend/HGSegmentedPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/HGPersonalCenterExtend/HGSegmentedPageViewController.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/README.md -------------------------------------------------------------------------------- /show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenterExtend/HEAD/show.gif --------------------------------------------------------------------------------