├── .gitignore ├── HGPersonalCenter.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── HGPersonalCenter.xcworkspace └── contents.xcworkspacedata ├── HGPersonalCenter ├── 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 ├── Controllers │ ├── BaseControllers │ │ ├── HGBaseViewController.h │ │ ├── HGBaseViewController.m │ │ ├── HGNestedScrollViewController.h │ │ └── HGNestedScrollViewController.m │ ├── 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 ├── HGMacro.h ├── Info.plist ├── PrefixHeader.pch ├── Tools │ ├── HGDeviceHelper.h │ └── HGDeviceHelper.m ├── Views │ ├── HGHeaderImageView.h │ └── HGHeaderImageView.m └── main.m ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── GKNavigationBarViewController │ ├── GKNavigationBarViewController │ │ ├── GKNavigationBarViewController.bundle │ │ │ ├── btn_back_black@2x.png │ │ │ ├── btn_back_black@3x.png │ │ │ ├── btn_back_white@2x.png │ │ │ ├── btn_back_white@3x.png │ │ │ ├── nav_line.png │ │ │ ├── nav_line@2x.png │ │ │ └── nav_line@3x.png │ │ ├── GKNavigationBarViewController.h │ │ └── GKNavigationBarViewController.m │ ├── LICENSE │ └── README.md ├── HGCategoryView │ ├── HGCategoryView │ │ ├── HGCategoryView.h │ │ └── HGCategoryView.m │ ├── LICENSE │ └── README.md ├── HGPersonalCenterExtend │ ├── HGPersonalCenterExtend │ │ ├── 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 ├── Headers │ ├── Private │ │ ├── GKNavigationBarViewController │ │ │ ├── GKBaseTransitionAnimation.h │ │ │ ├── GKCategory.h │ │ │ ├── GKCommon.h │ │ │ ├── GKNavigationBar.h │ │ │ ├── GKNavigationBarConfigure.h │ │ │ ├── GKNavigationBarViewController.h │ │ │ ├── GKPopTransitionAnimation.h │ │ │ ├── GKPushTransitionAnimation.h │ │ │ ├── UIBarButtonItem+GKCategory.h │ │ │ ├── UINavigationController+GKCategory.h │ │ │ ├── UINavigationItem+GKCategory.h │ │ │ ├── UIScrollView+GKCategory.h │ │ │ └── UIViewController+GKCategory.h │ │ ├── HGCategoryView │ │ │ └── HGCategoryView.h │ │ ├── HGPersonalCenterExtend │ │ │ ├── HGCenterBaseTableView.h │ │ │ ├── HGPageViewController.h │ │ │ ├── HGPagesViewController.h │ │ │ ├── HGPersonalCenterExtend.h │ │ │ ├── HGPopGestureCompatibleCollectionView.h │ │ │ └── HGSegmentedPageViewController.h │ │ └── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ └── Public │ │ ├── GKNavigationBarViewController │ │ ├── GKBaseTransitionAnimation.h │ │ ├── GKCategory.h │ │ ├── GKCommon.h │ │ ├── GKNavigationBar.h │ │ ├── GKNavigationBarConfigure.h │ │ ├── GKNavigationBarViewController.h │ │ ├── GKPopTransitionAnimation.h │ │ ├── GKPushTransitionAnimation.h │ │ ├── UIBarButtonItem+GKCategory.h │ │ ├── UINavigationController+GKCategory.h │ │ ├── UINavigationItem+GKCategory.h │ │ ├── UIScrollView+GKCategory.h │ │ └── UIViewController+GKCategory.h │ │ ├── HGCategoryView │ │ └── HGCategoryView.h │ │ ├── HGPersonalCenterExtend │ │ ├── HGCenterBaseTableView.h │ │ ├── HGPageViewController.h │ │ ├── HGPagesViewController.h │ │ ├── HGPersonalCenterExtend.h │ │ ├── HGPopGestureCompatibleCollectionView.h │ │ └── HGSegmentedPageViewController.h │ │ └── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h ├── 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 └── Target Support Files │ ├── GKNavigationBarViewController │ ├── GKNavigationBarViewController-dummy.m │ ├── GKNavigationBarViewController-prefix.pch │ ├── GKNavigationBarViewController.debug.xcconfig │ └── GKNavigationBarViewController.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-HGPersonalCenter │ ├── Pods-HGPersonalCenter-acknowledgements.markdown │ ├── Pods-HGPersonalCenter-acknowledgements.plist │ ├── Pods-HGPersonalCenter-dummy.m │ ├── Pods-HGPersonalCenter-resources.sh │ ├── Pods-HGPersonalCenter.debug.xcconfig │ └── Pods-HGPersonalCenter.release.xcconfig ├── README.md └── show.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/.gitignore -------------------------------------------------------------------------------- /HGPersonalCenter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HGPersonalCenter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HGPersonalCenter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HGPersonalCenter/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/AppDelegate.h -------------------------------------------------------------------------------- /HGPersonalCenter/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/AppDelegate.m -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/back.imageset/back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/back.imageset/back.pdf -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/cartoon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/cartoon.imageset/Contents.json -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/cartoon.imageset/cartoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/cartoon.imageset/cartoon.jpg -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/center_avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/center_avatar.imageset/Contents.json -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/center_avatar.imageset/center_avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/center_avatar.imageset/center_avatar.jpeg -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/center_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/center_bg.imageset/Contents.json -------------------------------------------------------------------------------- /HGPersonalCenter/Assets.xcassets/center_bg.imageset/center_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Assets.xcassets/center_bg.imageset/center_bg.jpg -------------------------------------------------------------------------------- /HGPersonalCenter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HGPersonalCenter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/BaseControllers/HGBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/BaseControllers/HGBaseViewController.h -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/BaseControllers/HGBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/BaseControllers/HGBaseViewController.m -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/BaseControllers/HGNestedScrollViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/BaseControllers/HGNestedScrollViewController.h -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/BaseControllers/HGNestedScrollViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/BaseControllers/HGNestedScrollViewController.m -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/HGHomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/HGHomeViewController.h -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/HGHomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/HGHomeViewController.m -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/HGMessageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/HGMessageViewController.h -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/HGMessageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/HGMessageViewController.m -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/HGPersonalCenterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/HGPersonalCenterViewController.h -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/HGPersonalCenterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/HGPersonalCenterViewController.m -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/PageViewControllers/HGFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/PageViewControllers/HGFirstViewController.h -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/PageViewControllers/HGFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/PageViewControllers/HGFirstViewController.m -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/PageViewControllers/HGSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/PageViewControllers/HGSecondViewController.h -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/PageViewControllers/HGSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/PageViewControllers/HGSecondViewController.m -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/PageViewControllers/HGThirdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/PageViewControllers/HGThirdViewController.h -------------------------------------------------------------------------------- /HGPersonalCenter/Controllers/PageViewControllers/HGThirdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Controllers/PageViewControllers/HGThirdViewController.m -------------------------------------------------------------------------------- /HGPersonalCenter/HGMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/HGMacro.h -------------------------------------------------------------------------------- /HGPersonalCenter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Info.plist -------------------------------------------------------------------------------- /HGPersonalCenter/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/PrefixHeader.pch -------------------------------------------------------------------------------- /HGPersonalCenter/Tools/HGDeviceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Tools/HGDeviceHelper.h -------------------------------------------------------------------------------- /HGPersonalCenter/Tools/HGDeviceHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Tools/HGDeviceHelper.m -------------------------------------------------------------------------------- /HGPersonalCenter/Views/HGHeaderImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Views/HGHeaderImageView.h -------------------------------------------------------------------------------- /HGPersonalCenter/Views/HGHeaderImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/Views/HGHeaderImageView.m -------------------------------------------------------------------------------- /HGPersonalCenter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/HGPersonalCenter/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_black@2x.png -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_black@3x.png -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_white@2x.png -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_white@3x.png -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line.png -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line@2x.png -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line@3x.png -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.h -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.m -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/LICENSE -------------------------------------------------------------------------------- /Pods/GKNavigationBarViewController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/GKNavigationBarViewController/README.md -------------------------------------------------------------------------------- /Pods/HGCategoryView/HGCategoryView/HGCategoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGCategoryView/HGCategoryView/HGCategoryView.h -------------------------------------------------------------------------------- /Pods/HGCategoryView/HGCategoryView/HGCategoryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGCategoryView/HGCategoryView/HGCategoryView.m -------------------------------------------------------------------------------- /Pods/HGCategoryView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGCategoryView/LICENSE -------------------------------------------------------------------------------- /Pods/HGCategoryView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGCategoryView/README.md -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGCenterBaseTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGCenterBaseTableView.h -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGCenterBaseTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGCenterBaseTableView.m -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPageViewController.h -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPageViewController.m -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPagesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPagesViewController.h -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPagesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPagesViewController.m -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPersonalCenterExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPersonalCenterExtend.h -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.h -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.m -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGSegmentedPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGSegmentedPageViewController.h -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGSegmentedPageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/HGPersonalCenterExtend/HGSegmentedPageViewController.m -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/LICENSE -------------------------------------------------------------------------------- /Pods/HGPersonalCenterExtend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/HGPersonalCenterExtend/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/GKBaseTransitionAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKTransition/GKBaseTransitionAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/GKCommon.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKConfigure/GKCommon.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/GKNavigationBar.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKConfigure/GKNavigationBar.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/GKNavigationBarConfigure.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKConfigure/GKNavigationBarConfigure.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/GKNavigationBarViewController.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/GKPopTransitionAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKTransition/GKPopTransitionAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/GKPushTransitionAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKTransition/GKPushTransitionAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/UIBarButtonItem+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UIBarButtonItem+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/UINavigationController+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UINavigationController+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/UINavigationItem+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UINavigationItem+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/UIScrollView+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UIScrollView+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GKNavigationBarViewController/UIViewController+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UIViewController+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/HGCategoryView/HGCategoryView.h: -------------------------------------------------------------------------------- 1 | ../../../HGCategoryView/HGCategoryView/HGCategoryView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/HGPersonalCenterExtend/HGCenterBaseTableView.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGCenterBaseTableView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/HGPersonalCenterExtend/HGPageViewController.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGPageViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/HGPersonalCenterExtend/HGPagesViewController.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGPagesViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/HGPersonalCenterExtend/HGPersonalCenterExtend.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGPersonalCenterExtend.h -------------------------------------------------------------------------------- /Pods/Headers/Private/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/HGPersonalCenterExtend/HGSegmentedPageViewController.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGSegmentedPageViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/GKBaseTransitionAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKTransition/GKBaseTransitionAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/GKCommon.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKConfigure/GKCommon.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/GKNavigationBar.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKConfigure/GKNavigationBar.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/GKNavigationBarConfigure.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKConfigure/GKNavigationBarConfigure.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/GKNavigationBarViewController.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKNavigationBarViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/GKPopTransitionAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKTransition/GKPopTransitionAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/GKPushTransitionAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKTransition/GKPushTransitionAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/UIBarButtonItem+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UIBarButtonItem+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/UINavigationController+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UINavigationController+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/UINavigationItem+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UINavigationItem+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/UIScrollView+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UIScrollView+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GKNavigationBarViewController/UIViewController+GKCategory.h: -------------------------------------------------------------------------------- 1 | ../../../GKNavigationBarViewController/GKNavigationBarViewController/GKCategory/UIViewController+GKCategory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HGCategoryView/HGCategoryView.h: -------------------------------------------------------------------------------- 1 | ../../../HGCategoryView/HGCategoryView/HGCategoryView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HGPersonalCenterExtend/HGCenterBaseTableView.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGCenterBaseTableView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HGPersonalCenterExtend/HGPageViewController.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGPageViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HGPersonalCenterExtend/HGPagesViewController.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGPagesViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HGPersonalCenterExtend/HGPersonalCenterExtend.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGPersonalCenterExtend.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGPopGestureCompatibleCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HGPersonalCenterExtend/HGSegmentedPageViewController.h: -------------------------------------------------------------------------------- 1 | ../../../HGPersonalCenterExtend/HGPersonalCenterExtend/HGSegmentedPageViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/GKNavigationBarViewController/GKNavigationBarViewController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/GKNavigationBarViewController/GKNavigationBarViewController-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GKNavigationBarViewController/GKNavigationBarViewController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/GKNavigationBarViewController/GKNavigationBarViewController-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/GKNavigationBarViewController/GKNavigationBarViewController.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/GKNavigationBarViewController/GKNavigationBarViewController.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GKNavigationBarViewController/GKNavigationBarViewController.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/GKNavigationBarViewController/GKNavigationBarViewController.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/HGCategoryView/HGCategoryView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/HGCategoryView/HGCategoryView-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/HGCategoryView/HGCategoryView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/HGCategoryView/HGCategoryView-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/HGCategoryView/HGCategoryView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/HGCategoryView/HGCategoryView.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/HGCategoryView/HGCategoryView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/HGCategoryView/HGCategoryView.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/HGPersonalCenterExtend/HGPersonalCenterExtend.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Masonry/Masonry.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Masonry/Masonry.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/Pods/Target Support Files/Pods-HGPersonalCenter/Pods-HGPersonalCenter.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/README.md -------------------------------------------------------------------------------- /show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLL/HGPersonalCenter/HEAD/show.gif --------------------------------------------------------------------------------