├── .gitignore ├── README.md ├── TestScaleWithScreen.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── TestScaleWithScreen ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── UIView+AdaptScreen.h ├── UIView+AdaptScreen.m ├── ViewController.h ├── ViewController.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/README.md -------------------------------------------------------------------------------- /TestScaleWithScreen.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TestScaleWithScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TestScaleWithScreen/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/AppDelegate.h -------------------------------------------------------------------------------- /TestScaleWithScreen/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/AppDelegate.m -------------------------------------------------------------------------------- /TestScaleWithScreen/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestScaleWithScreen/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TestScaleWithScreen/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TestScaleWithScreen/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TestScaleWithScreen/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/Info.plist -------------------------------------------------------------------------------- /TestScaleWithScreen/UIView+AdaptScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/UIView+AdaptScreen.h -------------------------------------------------------------------------------- /TestScaleWithScreen/UIView+AdaptScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/UIView+AdaptScreen.m -------------------------------------------------------------------------------- /TestScaleWithScreen/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/ViewController.h -------------------------------------------------------------------------------- /TestScaleWithScreen/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/ViewController.m -------------------------------------------------------------------------------- /TestScaleWithScreen/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvBisheng/TestScaleWithScreen/HEAD/TestScaleWithScreen/main.m --------------------------------------------------------------------------------