├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Public │ │ │ └── SpriteKitAutoLayout │ │ │ ├── NSLayoutConstraint+SKAL.h │ │ │ ├── SKALUtils.h │ │ │ ├── SKNode+SKAL.h │ │ │ ├── SKView+SKAL.h │ │ │ └── SpriteKitAutoLayout.h │ ├── Local Podspecs │ │ └── SpriteKitAutoLayout.podspec │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-SpriteKitAutoLayout-SpriteKitAutoLayout │ │ ├── Pods-SpriteKitAutoLayout-SpriteKitAutoLayout-Private.xcconfig │ │ ├── Pods-SpriteKitAutoLayout-SpriteKitAutoLayout-dummy.m │ │ ├── Pods-SpriteKitAutoLayout-SpriteKitAutoLayout-prefix.pch │ │ └── Pods-SpriteKitAutoLayout-SpriteKitAutoLayout.xcconfig │ │ ├── Pods-SpriteKitAutoLayout │ │ ├── Pods-SpriteKitAutoLayout-acknowledgements.markdown │ │ ├── Pods-SpriteKitAutoLayout-acknowledgements.plist │ │ ├── Pods-SpriteKitAutoLayout-dummy.m │ │ ├── Pods-SpriteKitAutoLayout-environment.h │ │ ├── Pods-SpriteKitAutoLayout-resources.sh │ │ ├── Pods-SpriteKitAutoLayout.debug.xcconfig │ │ └── Pods-SpriteKitAutoLayout.release.xcconfig │ │ ├── Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout │ │ ├── Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout-Private.xcconfig │ │ ├── Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout-dummy.m │ │ ├── Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout-prefix.pch │ │ └── Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout.xcconfig │ │ ├── Pods-SpriteKitAutoLayoutOSX │ │ ├── Pods-SpriteKitAutoLayoutOSX-acknowledgements.markdown │ │ ├── Pods-SpriteKitAutoLayoutOSX-acknowledgements.plist │ │ ├── Pods-SpriteKitAutoLayoutOSX-dummy.m │ │ ├── Pods-SpriteKitAutoLayoutOSX-environment.h │ │ ├── Pods-SpriteKitAutoLayoutOSX-resources.sh │ │ ├── Pods-SpriteKitAutoLayoutOSX.debug.xcconfig │ │ └── Pods-SpriteKitAutoLayoutOSX.release.xcconfig │ │ ├── Pods-Tests-SpriteKitAutoLayout │ │ ├── Pods-Tests-SpriteKitAutoLayout-Private.xcconfig │ │ ├── Pods-Tests-SpriteKitAutoLayout-dummy.m │ │ ├── Pods-Tests-SpriteKitAutoLayout-prefix.pch │ │ └── Pods-Tests-SpriteKitAutoLayout.xcconfig │ │ └── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-environment.h │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig ├── Shared │ ├── CommonScene.swift │ ├── DemoScene1.swift │ ├── DemoScene2.swift │ ├── DemoScene3.swift │ ├── Images.xcassets │ │ └── back.imageset │ │ │ ├── Contents.json │ │ │ └── back.pdf │ └── MainScene.swift ├── SpriteKitAutoLayout.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── SpriteKitAutoLayoutOSX.xcscheme │ │ └── SpriteKitAutoLayoutiOS.xcscheme ├── SpriteKitAutoLayout.xcworkspace │ └── contents.xcworkspacedata ├── SpriteKitAutoLayout │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── SKALAppDelegate.h │ ├── SKALAppDelegate.m │ ├── SKALViewController.h │ ├── SKALViewController.m │ ├── SpriteKitAutoLayout-Bridging-Header.h │ ├── SpriteKitAutoLayout-Info.plist │ ├── SpriteKitAutoLayout-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── SpriteKitAutoLayoutOSX │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── FlippedSKView.h │ ├── FlippedSKView.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Spaceship.imageset │ │ │ ├── Contents.json │ │ │ └── Spaceship.png │ ├── Info.plist │ ├── SpriteKitAutoLayoutOSX-Bridging-Header.h │ └── main.m └── Tests │ ├── Tests-Bridging-Header.h │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ ├── Tests.swift │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── NSLayoutConstraint+SKAL.h │ ├── NSLayoutConstraint+SKAL.m │ ├── SKALPlatformView+SKALInternal.h │ ├── SKALPlatformView+SKALInternal.m │ ├── SKALUtils.h │ ├── SKALUtils.m │ ├── SKNode+SKAL.h │ ├── SKNode+SKAL.m │ ├── SKNode+SKALInternal.h │ ├── SKNode+SKALInternal.m │ ├── SKView+SKAL.h │ ├── SKView+SKAL.m │ └── SpriteKitAutoLayout.h ├── README.md └── SpriteKitAutoLayout.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/SpriteKitAutoLayout/NSLayoutConstraint+SKAL.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/NSLayoutConstraint+SKAL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/SpriteKitAutoLayout/SKALUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/SKALUtils.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/SpriteKitAutoLayout/SKNode+SKAL.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/SKNode+SKAL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/SpriteKitAutoLayout/SKView+SKAL.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/SKView+SKAL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/SpriteKitAutoLayout/SpriteKitAutoLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/SpriteKitAutoLayout.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SpriteKitAutoLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Local Podspecs/SpriteKitAutoLayout.podspec -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-SpriteKitAutoLayout.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayout/Pods-SpriteKitAutoLayout.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout/Pods-SpriteKitAutoLayoutOSX-SpriteKitAutoLayout.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-SpriteKitAutoLayoutOSX/Pods-SpriteKitAutoLayoutOSX.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-SpriteKitAutoLayout/Pods-Tests-SpriteKitAutoLayout-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests-SpriteKitAutoLayout/Pods-Tests-SpriteKitAutoLayout-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-SpriteKitAutoLayout/Pods-Tests-SpriteKitAutoLayout-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests-SpriteKitAutoLayout/Pods-Tests-SpriteKitAutoLayout-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-SpriteKitAutoLayout/Pods-Tests-SpriteKitAutoLayout-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests-SpriteKitAutoLayout/Pods-Tests-SpriteKitAutoLayout-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-SpriteKitAutoLayout/Pods-Tests-SpriteKitAutoLayout.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TESTS_SPRITEKITAUTOLAYOUT_OTHER_LDFLAGS = -framework "SpriteKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Shared/CommonScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Shared/CommonScene.swift -------------------------------------------------------------------------------- /Example/Shared/DemoScene1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Shared/DemoScene1.swift -------------------------------------------------------------------------------- /Example/Shared/DemoScene2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Shared/DemoScene2.swift -------------------------------------------------------------------------------- /Example/Shared/DemoScene3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Shared/DemoScene3.swift -------------------------------------------------------------------------------- /Example/Shared/Images.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Shared/Images.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Images.xcassets/back.imageset/back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Shared/Images.xcassets/back.imageset/back.pdf -------------------------------------------------------------------------------- /Example/Shared/MainScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Shared/MainScene.swift -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout.xcodeproj/xcshareddata/xcschemes/SpriteKitAutoLayoutOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout.xcodeproj/xcshareddata/xcschemes/SpriteKitAutoLayoutOSX.xcscheme -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout.xcodeproj/xcshareddata/xcschemes/SpriteKitAutoLayoutiOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout.xcodeproj/xcshareddata/xcschemes/SpriteKitAutoLayoutiOS.xcscheme -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/SKALAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/SKALAppDelegate.h -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/SKALAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/SKALAppDelegate.m -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/SKALViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/SKALViewController.h -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/SKALViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/SKALViewController.m -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/SpriteKitAutoLayout-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/SpriteKitAutoLayout-Bridging-Header.h -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/SpriteKitAutoLayout-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/SpriteKitAutoLayout-Info.plist -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/SpriteKitAutoLayout-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/SpriteKitAutoLayout-Prefix.pch -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayout/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayout/main.m -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/AppDelegate.h -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/AppDelegate.m -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/FlippedSKView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/FlippedSKView.h -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/FlippedSKView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/FlippedSKView.m -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/Images.xcassets/Spaceship.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/Images.xcassets/Spaceship.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/Images.xcassets/Spaceship.imageset/Spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/Images.xcassets/Spaceship.imageset/Spaceship.png -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/Info.plist -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/SpriteKitAutoLayoutOSX-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/SpriteKitAutoLayoutOSX-Bridging-Header.h -------------------------------------------------------------------------------- /Example/SpriteKitAutoLayoutOSX/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/SpriteKitAutoLayoutOSX/main.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Tests/Tests-Bridging-Header.h -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/NSLayoutConstraint+SKAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/NSLayoutConstraint+SKAL.h -------------------------------------------------------------------------------- /Pod/Classes/NSLayoutConstraint+SKAL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/NSLayoutConstraint+SKAL.m -------------------------------------------------------------------------------- /Pod/Classes/SKALPlatformView+SKALInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKALPlatformView+SKALInternal.h -------------------------------------------------------------------------------- /Pod/Classes/SKALPlatformView+SKALInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKALPlatformView+SKALInternal.m -------------------------------------------------------------------------------- /Pod/Classes/SKALUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKALUtils.h -------------------------------------------------------------------------------- /Pod/Classes/SKALUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKALUtils.m -------------------------------------------------------------------------------- /Pod/Classes/SKNode+SKAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKNode+SKAL.h -------------------------------------------------------------------------------- /Pod/Classes/SKNode+SKAL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKNode+SKAL.m -------------------------------------------------------------------------------- /Pod/Classes/SKNode+SKALInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKNode+SKALInternal.h -------------------------------------------------------------------------------- /Pod/Classes/SKNode+SKALInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKNode+SKALInternal.m -------------------------------------------------------------------------------- /Pod/Classes/SKView+SKAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKView+SKAL.h -------------------------------------------------------------------------------- /Pod/Classes/SKView+SKAL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SKView+SKAL.m -------------------------------------------------------------------------------- /Pod/Classes/SpriteKitAutoLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/Pod/Classes/SpriteKitAutoLayout.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/README.md -------------------------------------------------------------------------------- /SpriteKitAutoLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrebenets/SpriteKitAutoLayout/HEAD/SpriteKitAutoLayout.podspec --------------------------------------------------------------------------------