├── JCFrameLayout.podspec ├── JCFrameLayout.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── abc.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── abc.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── JCFrameLayout.xcscheme │ └── xcschememanagement.plist ├── JCFrameLayout ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Examples │ ├── DevTest.h │ ├── DevTest.m │ ├── ExampleVC1.h │ ├── ExampleVC1.m │ ├── ExampleVC2.h │ ├── ExampleVC2.m │ ├── ExampleVC3.h │ ├── ExampleVC3.m │ ├── ExampleVC4.h │ ├── ExampleVC4.m │ ├── ExampleVC5.h │ ├── ExampleVC5.m │ ├── SecondViewController.h │ └── SecondViewController.m ├── Info.plist ├── JCFrameLayout │ ├── JCFrame.h │ ├── JCFrame.m │ ├── JCFrameAttribute.h │ ├── JCFrameAttribute.m │ ├── JCFrameExecutor.h │ ├── JCFrameExecutor.m │ ├── JCFrameLayout.h │ ├── JCFrameLayoutConst.h │ ├── JCFrameMake.h │ ├── JCFrameMake.m │ ├── JCFrameUtilities.h │ ├── UIView+JCFrame.h │ ├── UIView+JCFrame.m │ ├── UIView+JCFrameLayout.h │ └── UIView+JCFrameLayout.m ├── QQ20170331-173628.png ├── ViewController.h ├── ViewController.m └── main.m ├── LICENSE.txt ├── README.md ├── images └── image1.png └── newfile /JCFrameLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout.podspec -------------------------------------------------------------------------------- /JCFrameLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JCFrameLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JCFrameLayout.xcodeproj/project.xcworkspace/xcuserdata/abc.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout.xcodeproj/project.xcworkspace/xcuserdata/abc.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /JCFrameLayout.xcodeproj/xcuserdata/abc.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout.xcodeproj/xcuserdata/abc.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /JCFrameLayout.xcodeproj/xcuserdata/abc.xcuserdatad/xcschemes/JCFrameLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout.xcodeproj/xcuserdata/abc.xcuserdatad/xcschemes/JCFrameLayout.xcscheme -------------------------------------------------------------------------------- /JCFrameLayout.xcodeproj/xcuserdata/abc.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout.xcodeproj/xcuserdata/abc.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /JCFrameLayout/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/AppDelegate.h -------------------------------------------------------------------------------- /JCFrameLayout/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/AppDelegate.m -------------------------------------------------------------------------------- /JCFrameLayout/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JCFrameLayout/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /JCFrameLayout/Examples/DevTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/DevTest.h -------------------------------------------------------------------------------- /JCFrameLayout/Examples/DevTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/DevTest.m -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC1.h -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC1.m -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC2.h -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC2.m -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC3.h -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC3.m -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC4.h -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC4.m -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC5.h -------------------------------------------------------------------------------- /JCFrameLayout/Examples/ExampleVC5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/ExampleVC5.m -------------------------------------------------------------------------------- /JCFrameLayout/Examples/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/SecondViewController.h -------------------------------------------------------------------------------- /JCFrameLayout/Examples/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Examples/SecondViewController.m -------------------------------------------------------------------------------- /JCFrameLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/Info.plist -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrame.h -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrame.m -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrameAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrameAttribute.h -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrameAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrameAttribute.m -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrameExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrameExecutor.h -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrameExecutor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrameExecutor.m -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrameLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrameLayout.h -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrameLayoutConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrameLayoutConst.h -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrameMake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrameMake.h -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrameMake.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrameMake.m -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/JCFrameUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/JCFrameUtilities.h -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/UIView+JCFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/UIView+JCFrame.h -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/UIView+JCFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/UIView+JCFrame.m -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/UIView+JCFrameLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/UIView+JCFrameLayout.h -------------------------------------------------------------------------------- /JCFrameLayout/JCFrameLayout/UIView+JCFrameLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/JCFrameLayout/UIView+JCFrameLayout.m -------------------------------------------------------------------------------- /JCFrameLayout/QQ20170331-173628.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/QQ20170331-173628.png -------------------------------------------------------------------------------- /JCFrameLayout/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/ViewController.h -------------------------------------------------------------------------------- /JCFrameLayout/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/ViewController.m -------------------------------------------------------------------------------- /JCFrameLayout/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/JCFrameLayout/main.m -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/README.md -------------------------------------------------------------------------------- /images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devjackcat/JCFrameLayout/HEAD/images/image1.png -------------------------------------------------------------------------------- /newfile: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------