├── .gitignore ├── ArchitectureOCDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ArchitectureOCDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Cdnt │ ├── Cdnt.h │ ├── Cdnt.m │ ├── CdntAction.h │ ├── CdntAction.m │ ├── Dic.h │ └── Dic.m ├── Com │ ├── AopLogCom │ │ ├── AopLogCom.h │ │ └── AopLogCom.m │ ├── ButtonCom │ │ ├── ButtonCom.h │ │ └── ButtonCom.m │ ├── EmergeCom │ │ ├── EmergeCom.h │ │ └── EmergeCom.m │ ├── FirstListCom │ │ ├── FirstListCom.h │ │ └── FirstListCom.m │ ├── LabelCom │ │ ├── LabelCom.h │ │ └── LabelCom.m │ ├── PublishCom │ │ ├── PublishCom.h │ │ └── PublishCom.m │ ├── TextGeneratorCom │ │ ├── TextGeneratorCom.h │ │ └── TextGeneratorCom.m │ └── VCGeneratorCom │ │ ├── VCGeneratorCom.h │ │ └── VCGeneratorCom.m ├── Info.plist ├── VC │ ├── Bridge │ │ ├── BlackFieryDragonAbility.h │ │ ├── BlackFieryDragonAbility.m │ │ ├── BridgeVC.h │ │ ├── BridgeVC.m │ │ ├── DragonAbility.h │ │ ├── FieryDragon.h │ │ ├── FieryDragon.m │ │ ├── RedFieryDragonAbility.h │ │ └── RedFieryDragonAbility.m │ ├── FactoryMethod │ │ ├── BlackDragon.h │ │ ├── BlackDragon.m │ │ ├── BlackDragonFactory.h │ │ ├── BlackDragonFactory.m │ │ ├── Dragon.h │ │ ├── DragonFactory.h │ │ ├── FactoryMethodVC.h │ │ ├── FactoryMethodVC.m │ │ ├── RedDragon.h │ │ ├── RedDragon.m │ │ ├── RedDragonFactory.h │ │ └── RedDragonFactory.m │ ├── FirstPage │ │ ├── CdntCat │ │ │ ├── Cdnt+First.h │ │ │ └── Cdnt+First.m │ │ ├── FirstVC.h │ │ └── FirstVC.m │ ├── Publish │ │ ├── CdntCat │ │ │ ├── Cdnt+Publish.h │ │ │ └── Cdnt+Publish.m │ │ ├── PublishVC.h │ │ └── PublishVC.m │ └── State │ │ ├── DragonAtTheLastGaspState.h │ │ ├── DragonAtTheLastGaspState.m │ │ ├── DragonFight.h │ │ ├── DragonFight.m │ │ ├── DragonFullEnergyState.h │ │ ├── DragonFullEnergyState.m │ │ ├── DragonHurtState.h │ │ ├── DragonHurtState.m │ │ ├── DragonState.h │ │ ├── StateVC.h │ │ └── StateVC.m └── main.m ├── LICENSE └── Podfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /ArchitectureOCDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ArchitectureOCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ArchitectureOCDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/AppDelegate.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/AppDelegate.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ArchitectureOCDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ArchitectureOCDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ArchitectureOCDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ArchitectureOCDemo/Cdnt/Cdnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Cdnt/Cdnt.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Cdnt/Cdnt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Cdnt/Cdnt.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Cdnt/CdntAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Cdnt/CdntAction.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Cdnt/CdntAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Cdnt/CdntAction.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Cdnt/Dic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Cdnt/Dic.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Cdnt/Dic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Cdnt/Dic.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/AopLogCom/AopLogCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/AopLogCom/AopLogCom.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/AopLogCom/AopLogCom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/AopLogCom/AopLogCom.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/ButtonCom/ButtonCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/ButtonCom/ButtonCom.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/ButtonCom/ButtonCom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/ButtonCom/ButtonCom.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/EmergeCom/EmergeCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/EmergeCom/EmergeCom.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/EmergeCom/EmergeCom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/EmergeCom/EmergeCom.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/FirstListCom/FirstListCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/FirstListCom/FirstListCom.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/FirstListCom/FirstListCom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/FirstListCom/FirstListCom.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/LabelCom/LabelCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/LabelCom/LabelCom.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/LabelCom/LabelCom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/LabelCom/LabelCom.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/PublishCom/PublishCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/PublishCom/PublishCom.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/PublishCom/PublishCom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/PublishCom/PublishCom.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/TextGeneratorCom/TextGeneratorCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/TextGeneratorCom/TextGeneratorCom.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/TextGeneratorCom/TextGeneratorCom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/TextGeneratorCom/TextGeneratorCom.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/VCGeneratorCom/VCGeneratorCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/VCGeneratorCom/VCGeneratorCom.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/Com/VCGeneratorCom/VCGeneratorCom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Com/VCGeneratorCom/VCGeneratorCom.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/Info.plist -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Bridge/BlackFieryDragonAbility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Bridge/BlackFieryDragonAbility.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Bridge/BlackFieryDragonAbility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Bridge/BlackFieryDragonAbility.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Bridge/BridgeVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Bridge/BridgeVC.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Bridge/BridgeVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Bridge/BridgeVC.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Bridge/DragonAbility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Bridge/DragonAbility.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Bridge/FieryDragon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Bridge/FieryDragon.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Bridge/FieryDragon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Bridge/FieryDragon.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Bridge/RedFieryDragonAbility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Bridge/RedFieryDragonAbility.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Bridge/RedFieryDragonAbility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Bridge/RedFieryDragonAbility.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/BlackDragon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/BlackDragon.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/BlackDragon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/BlackDragon.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/BlackDragonFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/BlackDragonFactory.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/BlackDragonFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/BlackDragonFactory.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/Dragon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/Dragon.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/DragonFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/DragonFactory.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/FactoryMethodVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/FactoryMethodVC.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/FactoryMethodVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/FactoryMethodVC.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/RedDragon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/RedDragon.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/RedDragon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/RedDragon.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/RedDragonFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/RedDragonFactory.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FactoryMethod/RedDragonFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FactoryMethod/RedDragonFactory.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FirstPage/CdntCat/Cdnt+First.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FirstPage/CdntCat/Cdnt+First.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FirstPage/CdntCat/Cdnt+First.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FirstPage/CdntCat/Cdnt+First.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FirstPage/FirstVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FirstPage/FirstVC.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/FirstPage/FirstVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/FirstPage/FirstVC.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Publish/CdntCat/Cdnt+Publish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Publish/CdntCat/Cdnt+Publish.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Publish/CdntCat/Cdnt+Publish.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Publish/CdntCat/Cdnt+Publish.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Publish/PublishVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Publish/PublishVC.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/Publish/PublishVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/Publish/PublishVC.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/DragonAtTheLastGaspState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/DragonAtTheLastGaspState.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/DragonAtTheLastGaspState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/DragonAtTheLastGaspState.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/DragonFight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/DragonFight.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/DragonFight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/DragonFight.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/DragonFullEnergyState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/DragonFullEnergyState.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/DragonFullEnergyState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/DragonFullEnergyState.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/DragonHurtState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/DragonHurtState.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/DragonHurtState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/DragonHurtState.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/DragonState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/DragonState.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/StateVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/StateVC.h -------------------------------------------------------------------------------- /ArchitectureOCDemo/VC/State/StateVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/VC/State/StateVC.m -------------------------------------------------------------------------------- /ArchitectureOCDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/ArchitectureOCDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming1016/ArchitectureDemo/HEAD/Podfile --------------------------------------------------------------------------------