├── .gitignore ├── .swift-version ├── Demo ├── StoryboardConstraint.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── StoryboardConstraint.xcscmblueprint └── StoryboardConstraint │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── README.md ├── StoryboardConstraint.podspec ├── StoryboardConstraint └── UIView+StoryboardConstraint.swift └── readme-images └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /Demo/StoryboardConstraint.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/Demo/StoryboardConstraint.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/StoryboardConstraint.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/Demo/StoryboardConstraint.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/StoryboardConstraint.xcodeproj/project.xcworkspace/xcshareddata/StoryboardConstraint.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/Demo/StoryboardConstraint.xcodeproj/project.xcworkspace/xcshareddata/StoryboardConstraint.xcscmblueprint -------------------------------------------------------------------------------- /Demo/StoryboardConstraint/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/Demo/StoryboardConstraint/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/StoryboardConstraint/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/Demo/StoryboardConstraint/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/StoryboardConstraint/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/Demo/StoryboardConstraint/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/StoryboardConstraint/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/Demo/StoryboardConstraint/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/StoryboardConstraint/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/Demo/StoryboardConstraint/Info.plist -------------------------------------------------------------------------------- /Demo/StoryboardConstraint/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/Demo/StoryboardConstraint/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/README.md -------------------------------------------------------------------------------- /StoryboardConstraint.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/StoryboardConstraint.podspec -------------------------------------------------------------------------------- /StoryboardConstraint/UIView+StoryboardConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/StoryboardConstraint/UIView+StoryboardConstraint.swift -------------------------------------------------------------------------------- /readme-images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimix/StoryboardConstraint/HEAD/readme-images/demo.gif --------------------------------------------------------------------------------