├── .gitignore ├── CodeSamples.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CodeSamples ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── so-icon.imageset │ │ ├── Contents.json │ │ └── so-icon.png ├── Controllers │ ├── AnimatingConstraintsVC.swift │ ├── SelfInAnimationsVC.swift │ └── WrappingTextVC.swift ├── Info.plist └── UI │ └── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CodeSamplesTests ├── CodeSamplesTests.swift └── Info.plist ├── CodeSamplesUITests ├── CodeSamplesUITests.swift └── Info.plist ├── LICENSE ├── README.md └── readme_images ├── animating_constraints.gif ├── animations-self.gif └── wrapping_text.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/.gitignore -------------------------------------------------------------------------------- /CodeSamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CodeSamples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CodeSamples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CodeSamples/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/AppDelegate.swift -------------------------------------------------------------------------------- /CodeSamples/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CodeSamples/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CodeSamples/Assets.xcassets/so-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/Assets.xcassets/so-icon.imageset/Contents.json -------------------------------------------------------------------------------- /CodeSamples/Assets.xcassets/so-icon.imageset/so-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/Assets.xcassets/so-icon.imageset/so-icon.png -------------------------------------------------------------------------------- /CodeSamples/Controllers/AnimatingConstraintsVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/Controllers/AnimatingConstraintsVC.swift -------------------------------------------------------------------------------- /CodeSamples/Controllers/SelfInAnimationsVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/Controllers/SelfInAnimationsVC.swift -------------------------------------------------------------------------------- /CodeSamples/Controllers/WrappingTextVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/Controllers/WrappingTextVC.swift -------------------------------------------------------------------------------- /CodeSamples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/Info.plist -------------------------------------------------------------------------------- /CodeSamples/UI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/UI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CodeSamples/UI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamples/UI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CodeSamplesTests/CodeSamplesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamplesTests/CodeSamplesTests.swift -------------------------------------------------------------------------------- /CodeSamplesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamplesTests/Info.plist -------------------------------------------------------------------------------- /CodeSamplesUITests/CodeSamplesUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamplesUITests/CodeSamplesUITests.swift -------------------------------------------------------------------------------- /CodeSamplesUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/CodeSamplesUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/README.md -------------------------------------------------------------------------------- /readme_images/animating_constraints.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/readme_images/animating_constraints.gif -------------------------------------------------------------------------------- /readme_images/animations-self.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/readme_images/animations-self.gif -------------------------------------------------------------------------------- /readme_images/wrapping_text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teameh/SwiftCodeSamples/HEAD/readme_images/wrapping_text.jpg --------------------------------------------------------------------------------