├── ParallaxTest.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── dylanmcdonald.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── dylanmcdonald.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── ParallaxTest ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ ├── .DS_Store │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Parallax Test Icon_1024x1024.png │ │ ├── Parallax Test Icon_120x120.png │ │ ├── Parallax Test Icon_152x152.png │ │ ├── Parallax Test Icon_167x167.png │ │ ├── Parallax Test Icon_180x180.png │ │ ├── Parallax Test Icon_20x20.png │ │ ├── Parallax Test Icon_29x29.png │ │ ├── Parallax Test Icon_40x40.png │ │ ├── Parallax Test Icon_58x58.png │ │ ├── Parallax Test Icon_60x60.png │ │ ├── Parallax Test Icon_76x76.png │ │ ├── Parallax Test Icon_80x80.png │ │ └── Parallax Test Icon_87x87.png │ ├── Contents.json │ ├── Lone+Cypress+Sunset+(alt)+5K.imageset │ │ ├── Contents.json │ │ └── Lone+Cypress+Sunset+(alt)+5K.jpg │ ├── Mac 2.imageset │ │ ├── Contents.json │ │ └── Mac 2.png │ ├── Peek Performance Wallpaper iPad ALT.imageset │ │ ├── Contents.json │ │ └── Glass Rainbow 9 4K.jpg │ └── RUGI_Mac.imageset │ │ ├── Contents.json │ │ └── RUGI_Mac.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift ├── ParallaxTestTests └── ParallaxTestTests.swift ├── ParallaxTestUITests ├── ParallaxTestUITests.swift └── ParallaxTestUITestsLaunchTests.swift └── README.md /ParallaxTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 55; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6633024A27D1DB17003D3A3F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6633024927D1DB17003D3A3F /* AppDelegate.swift */; }; 11 | 6633024C27D1DB17003D3A3F /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6633024B27D1DB17003D3A3F /* SceneDelegate.swift */; }; 12 | 6633024E27D1DB17003D3A3F /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6633024D27D1DB17003D3A3F /* ViewController.swift */; }; 13 | 6633025127D1DB17003D3A3F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6633024F27D1DB17003D3A3F /* Main.storyboard */; }; 14 | 6633025327D1DB18003D3A3F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6633025227D1DB18003D3A3F /* Assets.xcassets */; }; 15 | 6633025627D1DB18003D3A3F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6633025427D1DB18003D3A3F /* LaunchScreen.storyboard */; }; 16 | 6633026127D1DB18003D3A3F /* ParallaxTestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6633026027D1DB18003D3A3F /* ParallaxTestTests.swift */; }; 17 | 6633026B27D1DB18003D3A3F /* ParallaxTestUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6633026A27D1DB18003D3A3F /* ParallaxTestUITests.swift */; }; 18 | 6633026D27D1DB18003D3A3F /* ParallaxTestUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6633026C27D1DB18003D3A3F /* ParallaxTestUITestsLaunchTests.swift */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 6633025D27D1DB18003D3A3F /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 6633023E27D1DB17003D3A3F /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = 6633024527D1DB17003D3A3F; 27 | remoteInfo = ParallaxTest; 28 | }; 29 | 6633026727D1DB18003D3A3F /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 6633023E27D1DB17003D3A3F /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 6633024527D1DB17003D3A3F; 34 | remoteInfo = ParallaxTest; 35 | }; 36 | /* End PBXContainerItemProxy section */ 37 | 38 | /* Begin PBXFileReference section */ 39 | 6633024627D1DB17003D3A3F /* ParallaxTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ParallaxTest.app; sourceTree = BUILT_PRODUCTS_DIR; }; 40 | 6633024927D1DB17003D3A3F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 41 | 6633024B27D1DB17003D3A3F /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; 42 | 6633024D27D1DB17003D3A3F /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 43 | 6633025027D1DB17003D3A3F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 44 | 6633025227D1DB18003D3A3F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 45 | 6633025527D1DB18003D3A3F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 46 | 6633025727D1DB18003D3A3F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | 6633025C27D1DB18003D3A3F /* ParallaxTestTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ParallaxTestTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | 6633026027D1DB18003D3A3F /* ParallaxTestTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParallaxTestTests.swift; sourceTree = ""; }; 49 | 6633026627D1DB18003D3A3F /* ParallaxTestUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ParallaxTestUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | 6633026A27D1DB18003D3A3F /* ParallaxTestUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParallaxTestUITests.swift; sourceTree = ""; }; 51 | 6633026C27D1DB18003D3A3F /* ParallaxTestUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParallaxTestUITestsLaunchTests.swift; sourceTree = ""; }; 52 | /* End PBXFileReference section */ 53 | 54 | /* Begin PBXFrameworksBuildPhase section */ 55 | 6633024327D1DB17003D3A3F /* Frameworks */ = { 56 | isa = PBXFrameworksBuildPhase; 57 | buildActionMask = 2147483647; 58 | files = ( 59 | ); 60 | runOnlyForDeploymentPostprocessing = 0; 61 | }; 62 | 6633025927D1DB18003D3A3F /* Frameworks */ = { 63 | isa = PBXFrameworksBuildPhase; 64 | buildActionMask = 2147483647; 65 | files = ( 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | 6633026327D1DB18003D3A3F /* Frameworks */ = { 70 | isa = PBXFrameworksBuildPhase; 71 | buildActionMask = 2147483647; 72 | files = ( 73 | ); 74 | runOnlyForDeploymentPostprocessing = 0; 75 | }; 76 | /* End PBXFrameworksBuildPhase section */ 77 | 78 | /* Begin PBXGroup section */ 79 | 6633023D27D1DB17003D3A3F = { 80 | isa = PBXGroup; 81 | children = ( 82 | 6633024827D1DB17003D3A3F /* ParallaxTest */, 83 | 6633025F27D1DB18003D3A3F /* ParallaxTestTests */, 84 | 6633026927D1DB18003D3A3F /* ParallaxTestUITests */, 85 | 6633024727D1DB17003D3A3F /* Products */, 86 | ); 87 | sourceTree = ""; 88 | }; 89 | 6633024727D1DB17003D3A3F /* Products */ = { 90 | isa = PBXGroup; 91 | children = ( 92 | 6633024627D1DB17003D3A3F /* ParallaxTest.app */, 93 | 6633025C27D1DB18003D3A3F /* ParallaxTestTests.xctest */, 94 | 6633026627D1DB18003D3A3F /* ParallaxTestUITests.xctest */, 95 | ); 96 | name = Products; 97 | sourceTree = ""; 98 | }; 99 | 6633024827D1DB17003D3A3F /* ParallaxTest */ = { 100 | isa = PBXGroup; 101 | children = ( 102 | 6633024927D1DB17003D3A3F /* AppDelegate.swift */, 103 | 6633024B27D1DB17003D3A3F /* SceneDelegate.swift */, 104 | 6633024D27D1DB17003D3A3F /* ViewController.swift */, 105 | 6633024F27D1DB17003D3A3F /* Main.storyboard */, 106 | 6633025227D1DB18003D3A3F /* Assets.xcassets */, 107 | 6633025427D1DB18003D3A3F /* LaunchScreen.storyboard */, 108 | 6633025727D1DB18003D3A3F /* Info.plist */, 109 | ); 110 | path = ParallaxTest; 111 | sourceTree = ""; 112 | }; 113 | 6633025F27D1DB18003D3A3F /* ParallaxTestTests */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | 6633026027D1DB18003D3A3F /* ParallaxTestTests.swift */, 117 | ); 118 | path = ParallaxTestTests; 119 | sourceTree = ""; 120 | }; 121 | 6633026927D1DB18003D3A3F /* ParallaxTestUITests */ = { 122 | isa = PBXGroup; 123 | children = ( 124 | 6633026A27D1DB18003D3A3F /* ParallaxTestUITests.swift */, 125 | 6633026C27D1DB18003D3A3F /* ParallaxTestUITestsLaunchTests.swift */, 126 | ); 127 | path = ParallaxTestUITests; 128 | sourceTree = ""; 129 | }; 130 | /* End PBXGroup section */ 131 | 132 | /* Begin PBXNativeTarget section */ 133 | 6633024527D1DB17003D3A3F /* ParallaxTest */ = { 134 | isa = PBXNativeTarget; 135 | buildConfigurationList = 6633027027D1DB18003D3A3F /* Build configuration list for PBXNativeTarget "ParallaxTest" */; 136 | buildPhases = ( 137 | 6633024227D1DB17003D3A3F /* Sources */, 138 | 6633024327D1DB17003D3A3F /* Frameworks */, 139 | 6633024427D1DB17003D3A3F /* Resources */, 140 | ); 141 | buildRules = ( 142 | ); 143 | dependencies = ( 144 | ); 145 | name = ParallaxTest; 146 | productName = ParallaxTest; 147 | productReference = 6633024627D1DB17003D3A3F /* ParallaxTest.app */; 148 | productType = "com.apple.product-type.application"; 149 | }; 150 | 6633025B27D1DB18003D3A3F /* ParallaxTestTests */ = { 151 | isa = PBXNativeTarget; 152 | buildConfigurationList = 6633027327D1DB18003D3A3F /* Build configuration list for PBXNativeTarget "ParallaxTestTests" */; 153 | buildPhases = ( 154 | 6633025827D1DB18003D3A3F /* Sources */, 155 | 6633025927D1DB18003D3A3F /* Frameworks */, 156 | 6633025A27D1DB18003D3A3F /* Resources */, 157 | ); 158 | buildRules = ( 159 | ); 160 | dependencies = ( 161 | 6633025E27D1DB18003D3A3F /* PBXTargetDependency */, 162 | ); 163 | name = ParallaxTestTests; 164 | productName = ParallaxTestTests; 165 | productReference = 6633025C27D1DB18003D3A3F /* ParallaxTestTests.xctest */; 166 | productType = "com.apple.product-type.bundle.unit-test"; 167 | }; 168 | 6633026527D1DB18003D3A3F /* ParallaxTestUITests */ = { 169 | isa = PBXNativeTarget; 170 | buildConfigurationList = 6633027627D1DB18003D3A3F /* Build configuration list for PBXNativeTarget "ParallaxTestUITests" */; 171 | buildPhases = ( 172 | 6633026227D1DB18003D3A3F /* Sources */, 173 | 6633026327D1DB18003D3A3F /* Frameworks */, 174 | 6633026427D1DB18003D3A3F /* Resources */, 175 | ); 176 | buildRules = ( 177 | ); 178 | dependencies = ( 179 | 6633026827D1DB18003D3A3F /* PBXTargetDependency */, 180 | ); 181 | name = ParallaxTestUITests; 182 | productName = ParallaxTestUITests; 183 | productReference = 6633026627D1DB18003D3A3F /* ParallaxTestUITests.xctest */; 184 | productType = "com.apple.product-type.bundle.ui-testing"; 185 | }; 186 | /* End PBXNativeTarget section */ 187 | 188 | /* Begin PBXProject section */ 189 | 6633023E27D1DB17003D3A3F /* Project object */ = { 190 | isa = PBXProject; 191 | attributes = { 192 | BuildIndependentTargetsInParallel = 1; 193 | LastSwiftUpdateCheck = 1330; 194 | LastUpgradeCheck = 1330; 195 | TargetAttributes = { 196 | 6633024527D1DB17003D3A3F = { 197 | CreatedOnToolsVersion = 13.3; 198 | }; 199 | 6633025B27D1DB18003D3A3F = { 200 | CreatedOnToolsVersion = 13.3; 201 | TestTargetID = 6633024527D1DB17003D3A3F; 202 | }; 203 | 6633026527D1DB18003D3A3F = { 204 | CreatedOnToolsVersion = 13.3; 205 | TestTargetID = 6633024527D1DB17003D3A3F; 206 | }; 207 | }; 208 | }; 209 | buildConfigurationList = 6633024127D1DB17003D3A3F /* Build configuration list for PBXProject "ParallaxTest" */; 210 | compatibilityVersion = "Xcode 13.0"; 211 | developmentRegion = en; 212 | hasScannedForEncodings = 0; 213 | knownRegions = ( 214 | en, 215 | Base, 216 | ); 217 | mainGroup = 6633023D27D1DB17003D3A3F; 218 | productRefGroup = 6633024727D1DB17003D3A3F /* Products */; 219 | projectDirPath = ""; 220 | projectRoot = ""; 221 | targets = ( 222 | 6633024527D1DB17003D3A3F /* ParallaxTest */, 223 | 6633025B27D1DB18003D3A3F /* ParallaxTestTests */, 224 | 6633026527D1DB18003D3A3F /* ParallaxTestUITests */, 225 | ); 226 | }; 227 | /* End PBXProject section */ 228 | 229 | /* Begin PBXResourcesBuildPhase section */ 230 | 6633024427D1DB17003D3A3F /* Resources */ = { 231 | isa = PBXResourcesBuildPhase; 232 | buildActionMask = 2147483647; 233 | files = ( 234 | 6633025627D1DB18003D3A3F /* LaunchScreen.storyboard in Resources */, 235 | 6633025327D1DB18003D3A3F /* Assets.xcassets in Resources */, 236 | 6633025127D1DB17003D3A3F /* Main.storyboard in Resources */, 237 | ); 238 | runOnlyForDeploymentPostprocessing = 0; 239 | }; 240 | 6633025A27D1DB18003D3A3F /* Resources */ = { 241 | isa = PBXResourcesBuildPhase; 242 | buildActionMask = 2147483647; 243 | files = ( 244 | ); 245 | runOnlyForDeploymentPostprocessing = 0; 246 | }; 247 | 6633026427D1DB18003D3A3F /* Resources */ = { 248 | isa = PBXResourcesBuildPhase; 249 | buildActionMask = 2147483647; 250 | files = ( 251 | ); 252 | runOnlyForDeploymentPostprocessing = 0; 253 | }; 254 | /* End PBXResourcesBuildPhase section */ 255 | 256 | /* Begin PBXSourcesBuildPhase section */ 257 | 6633024227D1DB17003D3A3F /* Sources */ = { 258 | isa = PBXSourcesBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | 6633024E27D1DB17003D3A3F /* ViewController.swift in Sources */, 262 | 6633024A27D1DB17003D3A3F /* AppDelegate.swift in Sources */, 263 | 6633024C27D1DB17003D3A3F /* SceneDelegate.swift in Sources */, 264 | ); 265 | runOnlyForDeploymentPostprocessing = 0; 266 | }; 267 | 6633025827D1DB18003D3A3F /* Sources */ = { 268 | isa = PBXSourcesBuildPhase; 269 | buildActionMask = 2147483647; 270 | files = ( 271 | 6633026127D1DB18003D3A3F /* ParallaxTestTests.swift in Sources */, 272 | ); 273 | runOnlyForDeploymentPostprocessing = 0; 274 | }; 275 | 6633026227D1DB18003D3A3F /* Sources */ = { 276 | isa = PBXSourcesBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | 6633026B27D1DB18003D3A3F /* ParallaxTestUITests.swift in Sources */, 280 | 6633026D27D1DB18003D3A3F /* ParallaxTestUITestsLaunchTests.swift in Sources */, 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | }; 284 | /* End PBXSourcesBuildPhase section */ 285 | 286 | /* Begin PBXTargetDependency section */ 287 | 6633025E27D1DB18003D3A3F /* PBXTargetDependency */ = { 288 | isa = PBXTargetDependency; 289 | target = 6633024527D1DB17003D3A3F /* ParallaxTest */; 290 | targetProxy = 6633025D27D1DB18003D3A3F /* PBXContainerItemProxy */; 291 | }; 292 | 6633026827D1DB18003D3A3F /* PBXTargetDependency */ = { 293 | isa = PBXTargetDependency; 294 | target = 6633024527D1DB17003D3A3F /* ParallaxTest */; 295 | targetProxy = 6633026727D1DB18003D3A3F /* PBXContainerItemProxy */; 296 | }; 297 | /* End PBXTargetDependency section */ 298 | 299 | /* Begin PBXVariantGroup section */ 300 | 6633024F27D1DB17003D3A3F /* Main.storyboard */ = { 301 | isa = PBXVariantGroup; 302 | children = ( 303 | 6633025027D1DB17003D3A3F /* Base */, 304 | ); 305 | name = Main.storyboard; 306 | sourceTree = ""; 307 | }; 308 | 6633025427D1DB18003D3A3F /* LaunchScreen.storyboard */ = { 309 | isa = PBXVariantGroup; 310 | children = ( 311 | 6633025527D1DB18003D3A3F /* Base */, 312 | ); 313 | name = LaunchScreen.storyboard; 314 | sourceTree = ""; 315 | }; 316 | /* End PBXVariantGroup section */ 317 | 318 | /* Begin XCBuildConfiguration section */ 319 | 6633026E27D1DB18003D3A3F /* Debug */ = { 320 | isa = XCBuildConfiguration; 321 | buildSettings = { 322 | ALWAYS_SEARCH_USER_PATHS = NO; 323 | CLANG_ANALYZER_NONNULL = YES; 324 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 325 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; 326 | CLANG_ENABLE_MODULES = YES; 327 | CLANG_ENABLE_OBJC_ARC = YES; 328 | CLANG_ENABLE_OBJC_WEAK = YES; 329 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 330 | CLANG_WARN_BOOL_CONVERSION = YES; 331 | CLANG_WARN_COMMA = YES; 332 | CLANG_WARN_CONSTANT_CONVERSION = YES; 333 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 334 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 335 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 336 | CLANG_WARN_EMPTY_BODY = YES; 337 | CLANG_WARN_ENUM_CONVERSION = YES; 338 | CLANG_WARN_INFINITE_RECURSION = YES; 339 | CLANG_WARN_INT_CONVERSION = YES; 340 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 341 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 342 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 343 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 344 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 345 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 346 | CLANG_WARN_STRICT_PROTOTYPES = YES; 347 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 348 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 349 | CLANG_WARN_UNREACHABLE_CODE = YES; 350 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 351 | COPY_PHASE_STRIP = NO; 352 | DEBUG_INFORMATION_FORMAT = dwarf; 353 | ENABLE_STRICT_OBJC_MSGSEND = YES; 354 | ENABLE_TESTABILITY = YES; 355 | GCC_C_LANGUAGE_STANDARD = gnu11; 356 | GCC_DYNAMIC_NO_PIC = NO; 357 | GCC_NO_COMMON_BLOCKS = YES; 358 | GCC_OPTIMIZATION_LEVEL = 0; 359 | GCC_PREPROCESSOR_DEFINITIONS = ( 360 | "DEBUG=1", 361 | "$(inherited)", 362 | ); 363 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 364 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 365 | GCC_WARN_UNDECLARED_SELECTOR = YES; 366 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 367 | GCC_WARN_UNUSED_FUNCTION = YES; 368 | GCC_WARN_UNUSED_VARIABLE = YES; 369 | IPHONEOS_DEPLOYMENT_TARGET = 15.4; 370 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 371 | MTL_FAST_MATH = YES; 372 | ONLY_ACTIVE_ARCH = YES; 373 | SDKROOT = iphoneos; 374 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 375 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 376 | }; 377 | name = Debug; 378 | }; 379 | 6633026F27D1DB18003D3A3F /* Release */ = { 380 | isa = XCBuildConfiguration; 381 | buildSettings = { 382 | ALWAYS_SEARCH_USER_PATHS = NO; 383 | CLANG_ANALYZER_NONNULL = YES; 384 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 385 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; 386 | CLANG_ENABLE_MODULES = YES; 387 | CLANG_ENABLE_OBJC_ARC = YES; 388 | CLANG_ENABLE_OBJC_WEAK = YES; 389 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 390 | CLANG_WARN_BOOL_CONVERSION = YES; 391 | CLANG_WARN_COMMA = YES; 392 | CLANG_WARN_CONSTANT_CONVERSION = YES; 393 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 394 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 395 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 396 | CLANG_WARN_EMPTY_BODY = YES; 397 | CLANG_WARN_ENUM_CONVERSION = YES; 398 | CLANG_WARN_INFINITE_RECURSION = YES; 399 | CLANG_WARN_INT_CONVERSION = YES; 400 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 401 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 402 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 403 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 404 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 405 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 406 | CLANG_WARN_STRICT_PROTOTYPES = YES; 407 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 408 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 409 | CLANG_WARN_UNREACHABLE_CODE = YES; 410 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 411 | COPY_PHASE_STRIP = NO; 412 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 413 | ENABLE_NS_ASSERTIONS = NO; 414 | ENABLE_STRICT_OBJC_MSGSEND = YES; 415 | GCC_C_LANGUAGE_STANDARD = gnu11; 416 | GCC_NO_COMMON_BLOCKS = YES; 417 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 418 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 419 | GCC_WARN_UNDECLARED_SELECTOR = YES; 420 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 421 | GCC_WARN_UNUSED_FUNCTION = YES; 422 | GCC_WARN_UNUSED_VARIABLE = YES; 423 | IPHONEOS_DEPLOYMENT_TARGET = 15.4; 424 | MTL_ENABLE_DEBUG_INFO = NO; 425 | MTL_FAST_MATH = YES; 426 | SDKROOT = iphoneos; 427 | SWIFT_COMPILATION_MODE = wholemodule; 428 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 429 | VALIDATE_PRODUCT = YES; 430 | }; 431 | name = Release; 432 | }; 433 | 6633027127D1DB18003D3A3F /* Debug */ = { 434 | isa = XCBuildConfiguration; 435 | buildSettings = { 436 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 437 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 438 | CODE_SIGN_STYLE = Automatic; 439 | CURRENT_PROJECT_VERSION = 1; 440 | DEVELOPMENT_TEAM = 6755LPJ5W2; 441 | GENERATE_INFOPLIST_FILE = YES; 442 | INFOPLIST_FILE = ParallaxTest/Info.plist; 443 | INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; 444 | INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; 445 | INFOPLIST_KEY_UIMainStoryboardFile = Main; 446 | INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; 447 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 448 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 449 | LD_RUNPATH_SEARCH_PATHS = ( 450 | "$(inherited)", 451 | "@executable_path/Frameworks", 452 | ); 453 | MARKETING_VERSION = 1.0; 454 | PRODUCT_BUNDLE_IDENTIFIER = com.sunapps.ParallaxTest; 455 | PRODUCT_NAME = "$(TARGET_NAME)"; 456 | SWIFT_EMIT_LOC_STRINGS = YES; 457 | SWIFT_VERSION = 5.0; 458 | TARGETED_DEVICE_FAMILY = "1,2"; 459 | }; 460 | name = Debug; 461 | }; 462 | 6633027227D1DB18003D3A3F /* Release */ = { 463 | isa = XCBuildConfiguration; 464 | buildSettings = { 465 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 466 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 467 | CODE_SIGN_STYLE = Automatic; 468 | CURRENT_PROJECT_VERSION = 1; 469 | DEVELOPMENT_TEAM = 6755LPJ5W2; 470 | GENERATE_INFOPLIST_FILE = YES; 471 | INFOPLIST_FILE = ParallaxTest/Info.plist; 472 | INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; 473 | INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; 474 | INFOPLIST_KEY_UIMainStoryboardFile = Main; 475 | INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; 476 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 477 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 478 | LD_RUNPATH_SEARCH_PATHS = ( 479 | "$(inherited)", 480 | "@executable_path/Frameworks", 481 | ); 482 | MARKETING_VERSION = 1.0; 483 | PRODUCT_BUNDLE_IDENTIFIER = com.sunapps.ParallaxTest; 484 | PRODUCT_NAME = "$(TARGET_NAME)"; 485 | SWIFT_EMIT_LOC_STRINGS = YES; 486 | SWIFT_VERSION = 5.0; 487 | TARGETED_DEVICE_FAMILY = "1,2"; 488 | }; 489 | name = Release; 490 | }; 491 | 6633027427D1DB18003D3A3F /* Debug */ = { 492 | isa = XCBuildConfiguration; 493 | buildSettings = { 494 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 495 | BUNDLE_LOADER = "$(TEST_HOST)"; 496 | CODE_SIGN_STYLE = Automatic; 497 | CURRENT_PROJECT_VERSION = 1; 498 | DEVELOPMENT_TEAM = 6755LPJ5W2; 499 | GENERATE_INFOPLIST_FILE = YES; 500 | IPHONEOS_DEPLOYMENT_TARGET = 15.4; 501 | MARKETING_VERSION = 1.0; 502 | PRODUCT_BUNDLE_IDENTIFIER = com.sunapps.ParallaxTestTests; 503 | PRODUCT_NAME = "$(TARGET_NAME)"; 504 | SWIFT_EMIT_LOC_STRINGS = NO; 505 | SWIFT_VERSION = 5.0; 506 | TARGETED_DEVICE_FAMILY = "1,2"; 507 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ParallaxTest.app/ParallaxTest"; 508 | }; 509 | name = Debug; 510 | }; 511 | 6633027527D1DB18003D3A3F /* Release */ = { 512 | isa = XCBuildConfiguration; 513 | buildSettings = { 514 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 515 | BUNDLE_LOADER = "$(TEST_HOST)"; 516 | CODE_SIGN_STYLE = Automatic; 517 | CURRENT_PROJECT_VERSION = 1; 518 | DEVELOPMENT_TEAM = 6755LPJ5W2; 519 | GENERATE_INFOPLIST_FILE = YES; 520 | IPHONEOS_DEPLOYMENT_TARGET = 15.4; 521 | MARKETING_VERSION = 1.0; 522 | PRODUCT_BUNDLE_IDENTIFIER = com.sunapps.ParallaxTestTests; 523 | PRODUCT_NAME = "$(TARGET_NAME)"; 524 | SWIFT_EMIT_LOC_STRINGS = NO; 525 | SWIFT_VERSION = 5.0; 526 | TARGETED_DEVICE_FAMILY = "1,2"; 527 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ParallaxTest.app/ParallaxTest"; 528 | }; 529 | name = Release; 530 | }; 531 | 6633027727D1DB18003D3A3F /* Debug */ = { 532 | isa = XCBuildConfiguration; 533 | buildSettings = { 534 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 535 | CODE_SIGN_STYLE = Automatic; 536 | CURRENT_PROJECT_VERSION = 1; 537 | DEVELOPMENT_TEAM = 6755LPJ5W2; 538 | GENERATE_INFOPLIST_FILE = YES; 539 | MARKETING_VERSION = 1.0; 540 | PRODUCT_BUNDLE_IDENTIFIER = com.sunapps.ParallaxTestUITests; 541 | PRODUCT_NAME = "$(TARGET_NAME)"; 542 | SWIFT_EMIT_LOC_STRINGS = NO; 543 | SWIFT_VERSION = 5.0; 544 | TARGETED_DEVICE_FAMILY = "1,2"; 545 | TEST_TARGET_NAME = ParallaxTest; 546 | }; 547 | name = Debug; 548 | }; 549 | 6633027827D1DB18003D3A3F /* Release */ = { 550 | isa = XCBuildConfiguration; 551 | buildSettings = { 552 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 553 | CODE_SIGN_STYLE = Automatic; 554 | CURRENT_PROJECT_VERSION = 1; 555 | DEVELOPMENT_TEAM = 6755LPJ5W2; 556 | GENERATE_INFOPLIST_FILE = YES; 557 | MARKETING_VERSION = 1.0; 558 | PRODUCT_BUNDLE_IDENTIFIER = com.sunapps.ParallaxTestUITests; 559 | PRODUCT_NAME = "$(TARGET_NAME)"; 560 | SWIFT_EMIT_LOC_STRINGS = NO; 561 | SWIFT_VERSION = 5.0; 562 | TARGETED_DEVICE_FAMILY = "1,2"; 563 | TEST_TARGET_NAME = ParallaxTest; 564 | }; 565 | name = Release; 566 | }; 567 | /* End XCBuildConfiguration section */ 568 | 569 | /* Begin XCConfigurationList section */ 570 | 6633024127D1DB17003D3A3F /* Build configuration list for PBXProject "ParallaxTest" */ = { 571 | isa = XCConfigurationList; 572 | buildConfigurations = ( 573 | 6633026E27D1DB18003D3A3F /* Debug */, 574 | 6633026F27D1DB18003D3A3F /* Release */, 575 | ); 576 | defaultConfigurationIsVisible = 0; 577 | defaultConfigurationName = Release; 578 | }; 579 | 6633027027D1DB18003D3A3F /* Build configuration list for PBXNativeTarget "ParallaxTest" */ = { 580 | isa = XCConfigurationList; 581 | buildConfigurations = ( 582 | 6633027127D1DB18003D3A3F /* Debug */, 583 | 6633027227D1DB18003D3A3F /* Release */, 584 | ); 585 | defaultConfigurationIsVisible = 0; 586 | defaultConfigurationName = Release; 587 | }; 588 | 6633027327D1DB18003D3A3F /* Build configuration list for PBXNativeTarget "ParallaxTestTests" */ = { 589 | isa = XCConfigurationList; 590 | buildConfigurations = ( 591 | 6633027427D1DB18003D3A3F /* Debug */, 592 | 6633027527D1DB18003D3A3F /* Release */, 593 | ); 594 | defaultConfigurationIsVisible = 0; 595 | defaultConfigurationName = Release; 596 | }; 597 | 6633027627D1DB18003D3A3F /* Build configuration list for PBXNativeTarget "ParallaxTestUITests" */ = { 598 | isa = XCConfigurationList; 599 | buildConfigurations = ( 600 | 6633027727D1DB18003D3A3F /* Debug */, 601 | 6633027827D1DB18003D3A3F /* Release */, 602 | ); 603 | defaultConfigurationIsVisible = 0; 604 | defaultConfigurationName = Release; 605 | }; 606 | /* End XCConfigurationList section */ 607 | }; 608 | rootObject = 6633023E27D1DB17003D3A3F /* Project object */; 609 | } 610 | -------------------------------------------------------------------------------- /ParallaxTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ParallaxTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ParallaxTest.xcodeproj/project.xcworkspace/xcuserdata/dylanmcdonald.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest.xcodeproj/project.xcworkspace/xcuserdata/dylanmcdonald.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ParallaxTest.xcodeproj/xcuserdata/dylanmcdonald.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | ParallaxTest.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /ParallaxTest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/.DS_Store -------------------------------------------------------------------------------- /ParallaxTest/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // ParallaxTest 4 | // 5 | // Created by Dylan McDonald on 3/4/22. 6 | // 7 | 8 | import UIKit 9 | 10 | @main 11 | class AppDelegate: UIResponder, UIApplicationDelegate { 12 | 13 | 14 | 15 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 16 | // Override point for customization after application launch. 17 | return true 18 | } 19 | 20 | // MARK: UISceneSession Lifecycle 21 | 22 | func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { 23 | // Called when a new scene session is being created. 24 | // Use this method to select a configuration to create the new scene with. 25 | return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) 26 | } 27 | 28 | func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { 29 | // Called when the user discards a scene session. 30 | // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. 31 | // Use this method to release any resources that were specific to the discarded scenes, as they will not return. 32 | } 33 | 34 | 35 | } 36 | 37 | -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Parallax Test Icon_40x40.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Parallax Test Icon_60x60.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Parallax Test Icon_58x58.png", 19 | "scale" : "2x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Parallax Test Icon_87x87.png", 25 | "scale" : "3x" 26 | }, 27 | { 28 | "size" : "40x40", 29 | "idiom" : "iphone", 30 | "filename" : "Parallax Test Icon_80x80.png", 31 | "scale" : "2x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Parallax Test Icon_120x120.png", 37 | "scale" : "3x" 38 | }, 39 | { 40 | "size" : "60x60", 41 | "idiom" : "iphone", 42 | "filename" : "Parallax Test Icon_120x120.png", 43 | "scale" : "2x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Parallax Test Icon_180x180.png", 49 | "scale" : "3x" 50 | }, 51 | { 52 | "size" : "20x20", 53 | "idiom" : "ipad", 54 | "filename" : "Parallax Test Icon_20x20.png", 55 | "scale" : "1x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Parallax Test Icon_40x40.png", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "size" : "29x29", 65 | "idiom" : "ipad", 66 | "filename" : "Parallax Test Icon_29x29.png", 67 | "scale" : "1x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Parallax Test Icon_58x58.png", 73 | "scale" : "2x" 74 | }, 75 | { 76 | "size" : "40x40", 77 | "idiom" : "ipad", 78 | "filename" : "Parallax Test Icon_40x40.png", 79 | "scale" : "1x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Parallax Test Icon_80x80.png", 85 | "scale" : "2x" 86 | }, 87 | { 88 | "size" : "76x76", 89 | "idiom" : "ipad", 90 | "filename" : "Parallax Test Icon_76x76.png", 91 | "scale" : "1x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Parallax Test Icon_152x152.png", 97 | "scale" : "2x" 98 | }, 99 | { 100 | "size" : "83.5x83.5", 101 | "idiom" : "ipad", 102 | "filename" : "Parallax Test Icon_167x167.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "1024x1024", 107 | "idiom" : "ios-marketing", 108 | "filename" : "Parallax Test Icon_1024x1024.png", 109 | "scale" : "1x" 110 | }, 111 | { 112 | "size" : "60x60", 113 | "idiom" : "car", 114 | "filename" : "Parallax Test Icon_120x120.png", 115 | "scale" : "2x" 116 | }, 117 | { 118 | "size" : "60x60", 119 | "idiom" : "car", 120 | "filename" : "Parallax Test Icon_180x180.png", 121 | "scale" : "3x" 122 | } 123 | ], 124 | "info" : { 125 | "version" : 1, 126 | "author" : "com.neriusv.macos.svgassets" 127 | } 128 | } -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_1024x1024.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_120x120.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_152x152.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_167x167.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_180x180.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_20x20.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_29x29.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_40x40.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_58x58.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_60x60.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_76x76.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_80x80.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/AppIcon.appiconset/Parallax Test Icon_87x87.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/Lone+Cypress+Sunset+(alt)+5K.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Lone+Cypress+Sunset+(alt)+5K.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/Lone+Cypress+Sunset+(alt)+5K.imageset/Lone+Cypress+Sunset+(alt)+5K.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/Lone+Cypress+Sunset+(alt)+5K.imageset/Lone+Cypress+Sunset+(alt)+5K.jpg -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/Mac 2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Mac 2.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/Mac 2.imageset/Mac 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/Mac 2.imageset/Mac 2.png -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/Peek Performance Wallpaper iPad ALT.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Glass Rainbow 9 4K.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/Peek Performance Wallpaper iPad ALT.imageset/Glass Rainbow 9 4K.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/Peek Performance Wallpaper iPad ALT.imageset/Glass Rainbow 9 4K.jpg -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/RUGI_Mac.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "RUGI_Mac.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /ParallaxTest/Assets.xcassets/RUGI_Mac.imageset/RUGI_Mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMcD8/Parallax-Sample/42ffebe251e1221fb67b925f4b8222de6555ed9f/ParallaxTest/Assets.xcassets/RUGI_Mac.imageset/RUGI_Mac.png -------------------------------------------------------------------------------- /ParallaxTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /ParallaxTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | -------------------------------------------------------------------------------- /ParallaxTest/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UIApplicationSceneManifest 6 | 7 | UIApplicationSupportsMultipleScenes 8 | 9 | UISceneConfigurations 10 | 11 | UIWindowSceneSessionRoleApplication 12 | 13 | 14 | UISceneConfigurationName 15 | Default Configuration 16 | UISceneDelegateClassName 17 | $(PRODUCT_MODULE_NAME).SceneDelegate 18 | UISceneStoryboardFile 19 | Main 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /ParallaxTest/SceneDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SceneDelegate.swift 3 | // ParallaxTest 4 | // 5 | // Created by Dylan McDonald on 3/4/22. 6 | // 7 | 8 | import UIKit 9 | 10 | class SceneDelegate: UIResponder, UIWindowSceneDelegate { 11 | 12 | var window: UIWindow? 13 | 14 | 15 | func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { 16 | // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. 17 | // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. 18 | // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). 19 | guard let _ = (scene as? UIWindowScene) else { return } 20 | } 21 | 22 | func sceneDidDisconnect(_ scene: UIScene) { 23 | // Called as the scene is being released by the system. 24 | // This occurs shortly after the scene enters the background, or when its session is discarded. 25 | // Release any resources associated with this scene that can be re-created the next time the scene connects. 26 | // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). 27 | } 28 | 29 | func sceneDidBecomeActive(_ scene: UIScene) { 30 | // Called when the scene has moved from an inactive state to an active state. 31 | // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. 32 | } 33 | 34 | func sceneWillResignActive(_ scene: UIScene) { 35 | // Called when the scene will move from an active state to an inactive state. 36 | // This may occur due to temporary interruptions (ex. an incoming phone call). 37 | } 38 | 39 | func sceneWillEnterForeground(_ scene: UIScene) { 40 | // Called as the scene transitions from the background to the foreground. 41 | // Use this method to undo the changes made on entering the background. 42 | } 43 | 44 | func sceneDidEnterBackground(_ scene: UIScene) { 45 | // Called as the scene transitions from the foreground to the background. 46 | // Use this method to save data, release shared resources, and store enough scene-specific state information 47 | // to restore the scene back to its current state. 48 | } 49 | 50 | 51 | } 52 | 53 | -------------------------------------------------------------------------------- /ParallaxTest/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // ParallaxTest 4 | // 5 | // Created by Dylan McDonald on 3/4/22. 6 | // 7 | 8 | import UIKit 9 | 10 | class ViewController: UIViewController { 11 | 12 | @IBOutlet weak var mainView: UIView! 13 | @IBOutlet weak var mainImage: UIImageView! 14 | @IBOutlet weak var wallpaperImage: UIImageView! 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | // Do any additional setup after loading the view. 18 | 19 | mainImage.layer.masksToBounds = true 20 | mainImage.layer.cornerRadius = 30 21 | mainImage.layer.cornerCurve = .continuous 22 | 23 | mainView.layer.masksToBounds = false 24 | mainView.layer.cornerRadius = 30 25 | mainView.layer.cornerCurve = .continuous 26 | mainView.layer.maskedCorners = [.layerMaxXMaxYCorner, .layerMaxXMinYCorner, .layerMinXMaxYCorner, .layerMinXMinYCorner] 27 | mainView.layer.shadowColor = UIColor.black.cgColor 28 | mainView.layer.shadowOffset = CGSize(width: 0, height: 1) 29 | mainView.layer.shadowRadius = 15 30 | mainView.layer.shadowOpacity = 0.7 31 | 32 | addParallaxToView(view: mainView, amount: 40) 33 | addShadowParallaxToView(view: mainView, amount: 40) 34 | addReverseParallaxToView(view: wallpaperImage, amount: 40) 35 | } 36 | 37 | 38 | 39 | } 40 | 41 | class RectanglesViewController: UIViewController { 42 | 43 | @IBOutlet weak var red: UIView! 44 | @IBOutlet weak var orange: UIView! 45 | @IBOutlet weak var yellow: UIView! 46 | @IBOutlet weak var green: UIView! 47 | @IBOutlet weak var teal: UIView! 48 | @IBOutlet weak var cyan: UIView! 49 | @IBOutlet weak var blue: UIView! 50 | @IBOutlet weak var indigo: UIView! 51 | 52 | override func viewDidLoad() { 53 | addParallaxToView(view: red, amount: 25) 54 | addParallaxToView(view: orange, amount: 25) 55 | addParallaxToView(view: yellow, amount: 25) 56 | addParallaxToView(view: green, amount: 25) 57 | addParallaxToView(view: teal, amount: 25) 58 | addParallaxToView(view: cyan, amount: 25) 59 | addParallaxToView(view: blue, amount: 25) 60 | addParallaxToView(view: indigo, amount: 25) 61 | } 62 | } 63 | 64 | 65 | func addParallaxToView(view: UIView, amount: Float) { 66 | 67 | let horizontal = UIInterpolatingMotionEffect(keyPath: "center.x", type: .tiltAlongHorizontalAxis) 68 | horizontal.minimumRelativeValue = -amount 69 | horizontal.maximumRelativeValue = amount 70 | 71 | let vertical = UIInterpolatingMotionEffect(keyPath: "center.y", type: .tiltAlongVerticalAxis) 72 | vertical.minimumRelativeValue = -amount 73 | vertical.maximumRelativeValue = amount 74 | 75 | let group = UIMotionEffectGroup() 76 | group.motionEffects = [horizontal, vertical] 77 | view.addMotionEffect(group) 78 | 79 | 80 | 81 | NotificationCenter.default.addObserver(forName: Notification.Name(rawValue: "UpdateParallax") , object: nil, queue: .main) { notification in 82 | UIView.animate(withDuration: 0.25) { 83 | view.removeMotionEffect(group) 84 | } 85 | } 86 | 87 | addShadowParallaxToView(view: view, amount: amount) 88 | } 89 | 90 | func addShadowParallaxToView(view: UIView, amount: Float) { 91 | 92 | view.layer.masksToBounds = false 93 | view.layer.cornerRadius = 30 94 | view.layer.cornerCurve = .continuous 95 | view.layer.maskedCorners = [.layerMaxXMaxYCorner, .layerMaxXMinYCorner, .layerMinXMaxYCorner, .layerMinXMinYCorner] 96 | view.layer.shadowColor = UIColor.black.cgColor 97 | view.layer.shadowOffset = CGSize(width: 0, height: 1) 98 | view.layer.shadowRadius = 15 99 | view.layer.shadowOpacity = 0.7 100 | 101 | 102 | let horizontal = UIInterpolatingMotionEffect(keyPath: "layer.shadowOffset.width", type: .tiltAlongHorizontalAxis) 103 | horizontal.minimumRelativeValue = amount 104 | horizontal.maximumRelativeValue = -amount 105 | 106 | let vertical = UIInterpolatingMotionEffect(keyPath: "layer.shadowOffset.height", type: .tiltAlongVerticalAxis) 107 | vertical.minimumRelativeValue = amount 108 | vertical.maximumRelativeValue = -amount 109 | 110 | let group = UIMotionEffectGroup() 111 | group.motionEffects = [horizontal, vertical] 112 | view.addMotionEffect(group) 113 | 114 | NotificationCenter.default.addObserver(forName: Notification.Name(rawValue: "UpdateParallax") , object: nil, queue: .main) { notification in 115 | UIView.animate(withDuration: 0.25) { 116 | view.removeMotionEffect(group) 117 | } 118 | } 119 | } 120 | 121 | func addReverseParallaxToView(view: UIView, amount: Float) { 122 | let horizontal = UIInterpolatingMotionEffect(keyPath: "center.x", type: .tiltAlongHorizontalAxis) 123 | horizontal.minimumRelativeValue = amount 124 | horizontal.maximumRelativeValue = -amount 125 | 126 | let vertical = UIInterpolatingMotionEffect(keyPath: "center.y", type: .tiltAlongVerticalAxis) 127 | vertical.minimumRelativeValue = amount 128 | vertical.maximumRelativeValue = -amount 129 | 130 | let group = UIMotionEffectGroup() 131 | group.motionEffects = [horizontal, vertical] 132 | view.addMotionEffect(group) 133 | 134 | NotificationCenter.default.addObserver(forName: Notification.Name(rawValue: "UpdateParallax") , object: nil, queue: .main) { notification in 135 | UIView.animate(withDuration: 0.25) { 136 | view.removeMotionEffect(group) 137 | } 138 | } 139 | } 140 | -------------------------------------------------------------------------------- /ParallaxTestTests/ParallaxTestTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ParallaxTestTests.swift 3 | // ParallaxTestTests 4 | // 5 | // Created by Dylan McDonald on 3/4/22. 6 | // 7 | 8 | import XCTest 9 | @testable import ParallaxTest 10 | 11 | class ParallaxTestTests: XCTestCase { 12 | 13 | override func setUpWithError() throws { 14 | // Put setup code here. This method is called before the invocation of each test method in the class. 15 | } 16 | 17 | override func tearDownWithError() throws { 18 | // Put teardown code here. This method is called after the invocation of each test method in the class. 19 | } 20 | 21 | func testExample() throws { 22 | // This is an example of a functional test case. 23 | // Use XCTAssert and related functions to verify your tests produce the correct results. 24 | // Any test you write for XCTest can be annotated as throws and async. 25 | // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. 26 | // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. 27 | } 28 | 29 | func testPerformanceExample() throws { 30 | // This is an example of a performance test case. 31 | self.measure { 32 | // Put the code you want to measure the time of here. 33 | } 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /ParallaxTestUITests/ParallaxTestUITests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ParallaxTestUITests.swift 3 | // ParallaxTestUITests 4 | // 5 | // Created by Dylan McDonald on 3/4/22. 6 | // 7 | 8 | import XCTest 9 | 10 | class ParallaxTestUITests: XCTestCase { 11 | 12 | override func setUpWithError() throws { 13 | // Put setup code here. This method is called before the invocation of each test method in the class. 14 | 15 | // In UI tests it is usually best to stop immediately when a failure occurs. 16 | continueAfterFailure = false 17 | 18 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 19 | } 20 | 21 | override func tearDownWithError() throws { 22 | // Put teardown code here. This method is called after the invocation of each test method in the class. 23 | } 24 | 25 | func testExample() throws { 26 | // UI tests must launch the application that they test. 27 | let app = XCUIApplication() 28 | app.launch() 29 | 30 | // Use XCTAssert and related functions to verify your tests produce the correct results. 31 | } 32 | 33 | func testLaunchPerformance() throws { 34 | if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) { 35 | // This measures how long it takes to launch your application. 36 | measure(metrics: [XCTApplicationLaunchMetric()]) { 37 | XCUIApplication().launch() 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /ParallaxTestUITests/ParallaxTestUITestsLaunchTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ParallaxTestUITestsLaunchTests.swift 3 | // ParallaxTestUITests 4 | // 5 | // Created by Dylan McDonald on 3/4/22. 6 | // 7 | 8 | import XCTest 9 | 10 | class ParallaxTestUITestsLaunchTests: XCTestCase { 11 | 12 | override class var runsForEachTargetApplicationUIConfiguration: Bool { 13 | true 14 | } 15 | 16 | override func setUpWithError() throws { 17 | continueAfterFailure = false 18 | } 19 | 20 | func testLaunch() throws { 21 | let app = XCUIApplication() 22 | app.launch() 23 | 24 | // Insert steps here to perform after app launch but before taking a screenshot, 25 | // such as logging into a test account or navigating somewhere in the app 26 | 27 | let attachment = XCTAttachment(screenshot: app.screenshot()) 28 | attachment.name = "Launch Screen" 29 | attachment.lifetime = .keepAlways 30 | add(attachment) 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Parallax-Sample 2 | A sample app that demos an iOS 7-style parallax effect. 3 | --------------------------------------------------------------------------------