├── MainProject ├── MainProject.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── MainProject.xcscmblueprint ├── MainProject.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── MainProject.xcscmblueprint ├── MainProject │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── HomeViewController.h │ ├── HomeViewController.m │ ├── Info.plist │ ├── LoginViewController.h │ ├── LoginViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ ├── Private │ │ ├── HomePageModule │ │ │ ├── HomePageModule.h │ │ │ └── HomePageViewController.h │ │ ├── MGJRouter │ │ │ └── MGJRouter.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 │ │ └── UserCenterModule │ │ │ ├── UserCenterModule.h │ │ │ └── UserCenterViewController.h │ └── Public │ │ ├── HomePageModule │ │ ├── HomePageModule.h │ │ └── HomePageViewController.h │ │ ├── MGJRouter │ │ └── MGJRouter.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 │ │ └── UserCenterModule │ │ ├── UserCenterModule.h │ │ └── UserCenterViewController.h │ ├── HomePageModule │ ├── HomePageModule │ │ └── HomePageModule │ │ │ ├── HomePageModule.h │ │ │ ├── HomePageModule.m │ │ │ ├── HomePageViewController.h │ │ │ └── HomePageViewController.m │ ├── LICENSE │ └── README.md │ ├── MGJRouter │ ├── LICENSE │ ├── MGJRouter │ │ ├── MGJRouter.h │ │ └── MGJRouter.m │ └── README.md │ ├── 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 │ ├── HomePageModule │ │ ├── HomePageModule-dummy.m │ │ ├── HomePageModule-prefix.pch │ │ └── HomePageModule.xcconfig │ ├── MGJRouter │ │ ├── MGJRouter-dummy.m │ │ ├── MGJRouter-prefix.pch │ │ └── MGJRouter.xcconfig │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ ├── Pods-MainProject │ │ ├── Pods-MainProject-acknowledgements.markdown │ │ ├── Pods-MainProject-acknowledgements.plist │ │ ├── Pods-MainProject-dummy.m │ │ ├── Pods-MainProject-frameworks.sh │ │ ├── Pods-MainProject-resources.sh │ │ ├── Pods-MainProject.debug.xcconfig │ │ └── Pods-MainProject.release.xcconfig │ └── UserCenterModule │ │ ├── UserCenterModule-dummy.m │ │ ├── UserCenterModule-prefix.pch │ │ └── UserCenterModule.xcconfig │ └── UserCenterModule │ ├── LICENSE │ ├── README.md │ └── UserCenterModule │ └── UserCenterModule │ ├── UserCenterModule.h │ ├── UserCenterModule.m │ ├── UserCenterViewController.h │ └── UserCenterViewController.m └── README.md /MainProject/MainProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MainProject/MainProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MainProject/MainProject.xcodeproj/project.xcworkspace/xcshareddata/MainProject.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject.xcodeproj/project.xcworkspace/xcshareddata/MainProject.xcscmblueprint -------------------------------------------------------------------------------- /MainProject/MainProject.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MainProject/MainProject.xcworkspace/xcshareddata/MainProject.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject.xcworkspace/xcshareddata/MainProject.xcscmblueprint -------------------------------------------------------------------------------- /MainProject/MainProject/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/AppDelegate.h -------------------------------------------------------------------------------- /MainProject/MainProject/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/AppDelegate.m -------------------------------------------------------------------------------- /MainProject/MainProject/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MainProject/MainProject/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MainProject/MainProject/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MainProject/MainProject/HomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/HomeViewController.h -------------------------------------------------------------------------------- /MainProject/MainProject/HomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/HomeViewController.m -------------------------------------------------------------------------------- /MainProject/MainProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/Info.plist -------------------------------------------------------------------------------- /MainProject/MainProject/LoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/LoginViewController.h -------------------------------------------------------------------------------- /MainProject/MainProject/LoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/LoginViewController.m -------------------------------------------------------------------------------- /MainProject/MainProject/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/ViewController.h -------------------------------------------------------------------------------- /MainProject/MainProject/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/ViewController.m -------------------------------------------------------------------------------- /MainProject/MainProject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/MainProject/main.m -------------------------------------------------------------------------------- /MainProject/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Podfile -------------------------------------------------------------------------------- /MainProject/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Podfile.lock -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/HomePageModule/HomePageModule.h: -------------------------------------------------------------------------------- 1 | ../../../HomePageModule/HomePageModule/HomePageModule/HomePageModule.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/HomePageModule/HomePageViewController.h: -------------------------------------------------------------------------------- 1 | ../../../HomePageModule/HomePageModule/HomePageModule/HomePageViewController.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/MGJRouter/MGJRouter.h: -------------------------------------------------------------------------------- 1 | ../../../MGJRouter/MGJRouter/MGJRouter.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/UserCenterModule/UserCenterModule.h: -------------------------------------------------------------------------------- 1 | ../../../UserCenterModule/UserCenterModule/UserCenterModule/UserCenterModule.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Private/UserCenterModule/UserCenterViewController.h: -------------------------------------------------------------------------------- 1 | ../../../UserCenterModule/UserCenterModule/UserCenterModule/UserCenterViewController.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/HomePageModule/HomePageModule.h: -------------------------------------------------------------------------------- 1 | ../../../HomePageModule/HomePageModule/HomePageModule/HomePageModule.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/HomePageModule/HomePageViewController.h: -------------------------------------------------------------------------------- 1 | ../../../HomePageModule/HomePageModule/HomePageModule/HomePageViewController.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/MGJRouter/MGJRouter.h: -------------------------------------------------------------------------------- 1 | ../../../MGJRouter/MGJRouter/MGJRouter.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/UserCenterModule/UserCenterModule.h: -------------------------------------------------------------------------------- 1 | ../../../UserCenterModule/UserCenterModule/UserCenterModule/UserCenterModule.h -------------------------------------------------------------------------------- /MainProject/Pods/Headers/Public/UserCenterModule/UserCenterViewController.h: -------------------------------------------------------------------------------- 1 | ../../../UserCenterModule/UserCenterModule/UserCenterModule/UserCenterViewController.h -------------------------------------------------------------------------------- /MainProject/Pods/HomePageModule/HomePageModule/HomePageModule/HomePageModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/HomePageModule/HomePageModule/HomePageModule/HomePageModule.h -------------------------------------------------------------------------------- /MainProject/Pods/HomePageModule/HomePageModule/HomePageModule/HomePageModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/HomePageModule/HomePageModule/HomePageModule/HomePageModule.m -------------------------------------------------------------------------------- /MainProject/Pods/HomePageModule/HomePageModule/HomePageModule/HomePageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/HomePageModule/HomePageModule/HomePageModule/HomePageViewController.h -------------------------------------------------------------------------------- /MainProject/Pods/HomePageModule/HomePageModule/HomePageModule/HomePageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/HomePageModule/HomePageModule/HomePageModule/HomePageViewController.m -------------------------------------------------------------------------------- /MainProject/Pods/HomePageModule/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/HomePageModule/LICENSE -------------------------------------------------------------------------------- /MainProject/Pods/HomePageModule/README.md: -------------------------------------------------------------------------------- 1 | #HomePageModule 2 | -------------------------------------------------------------------------------- /MainProject/Pods/MGJRouter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/MGJRouter/LICENSE -------------------------------------------------------------------------------- /MainProject/Pods/MGJRouter/MGJRouter/MGJRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/MGJRouter/MGJRouter/MGJRouter.h -------------------------------------------------------------------------------- /MainProject/Pods/MGJRouter/MGJRouter/MGJRouter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/MGJRouter/MGJRouter/MGJRouter.m -------------------------------------------------------------------------------- /MainProject/Pods/MGJRouter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/MGJRouter/README.md -------------------------------------------------------------------------------- /MainProject/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Manifest.lock -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /MainProject/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Masonry/README.md -------------------------------------------------------------------------------- /MainProject/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/HomePageModule/HomePageModule-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/HomePageModule/HomePageModule-dummy.m -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/HomePageModule/HomePageModule-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/HomePageModule/HomePageModule-prefix.pch -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/HomePageModule/HomePageModule.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/HomePageModule/HomePageModule.xcconfig -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/MGJRouter/MGJRouter-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/MGJRouter/MGJRouter-dummy.m -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/MGJRouter/MGJRouter-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/MGJRouter/MGJRouter-prefix.pch -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/MGJRouter/MGJRouter.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/MGJRouter/MGJRouter.xcconfig -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-acknowledgements.markdown -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-acknowledgements.plist -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-dummy.m -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-frameworks.sh -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject-resources.sh -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject.debug.xcconfig -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/Pods-MainProject/Pods-MainProject.release.xcconfig -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/UserCenterModule/UserCenterModule-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/UserCenterModule/UserCenterModule-dummy.m -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/UserCenterModule/UserCenterModule-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/UserCenterModule/UserCenterModule-prefix.pch -------------------------------------------------------------------------------- /MainProject/Pods/Target Support Files/UserCenterModule/UserCenterModule.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/Target Support Files/UserCenterModule/UserCenterModule.xcconfig -------------------------------------------------------------------------------- /MainProject/Pods/UserCenterModule/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/UserCenterModule/LICENSE -------------------------------------------------------------------------------- /MainProject/Pods/UserCenterModule/README.md: -------------------------------------------------------------------------------- 1 | #UserModule 2 | -------------------------------------------------------------------------------- /MainProject/Pods/UserCenterModule/UserCenterModule/UserCenterModule/UserCenterModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/UserCenterModule/UserCenterModule/UserCenterModule/UserCenterModule.h -------------------------------------------------------------------------------- /MainProject/Pods/UserCenterModule/UserCenterModule/UserCenterModule/UserCenterModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/UserCenterModule/UserCenterModule/UserCenterModule/UserCenterModule.m -------------------------------------------------------------------------------- /MainProject/Pods/UserCenterModule/UserCenterModule/UserCenterModule/UserCenterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/UserCenterModule/UserCenterModule/UserCenterModule/UserCenterViewController.h -------------------------------------------------------------------------------- /MainProject/Pods/UserCenterModule/UserCenterModule/UserCenterModule/UserCenterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/MainProject/Pods/UserCenterModule/UserCenterModule/UserCenterModule/UserCenterViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/ComponentArchitecture/HEAD/README.md --------------------------------------------------------------------------------