├── .gitignore ├── .travis.yml ├── Designs ├── screen_shot_bottom.png ├── screen_shot_center.png └── screen_shot_top.png ├── Example ├── GLWalkthrough.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── GLWalkthrough-Example.xcscheme ├── GLWalkthrough.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── GLWalkthrough │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Placeholders │ │ │ ├── Contents.json │ │ │ ├── isro.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── isro.jpeg │ │ │ ├── nasa.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nasa.jpeg │ │ │ ├── satelite.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── satelite.jpeg │ │ │ ├── spacex.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── spacex.jpeg │ │ │ ├── user_placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── user_placeholder.png │ │ │ │ ├── user_placeholder@2x.png │ │ │ │ └── user_placeholder@3x.png │ │ │ └── video_play_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── video_play_icon.png │ │ │ │ ├── video_play_icon@2x.png │ │ │ │ └── video_play_icon@3x.png │ │ ├── tabbar_home.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_home.png │ │ │ ├── tabbar_home@2x.png │ │ │ └── tabbar_home@3x.png │ │ ├── tabbar_my_protalk.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_my_protalk.png │ │ │ ├── tabbar_my_protalk@2x.png │ │ │ └── tabbar_my_protalk@3x.png │ │ ├── tabbar_profile.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_profile.png │ │ │ ├── tabbar_profile@2x.png │ │ │ └── tabbar_profile@3x.png │ │ └── tabbar_queries.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_queries.png │ │ │ ├── tabbar_queries@2x.png │ │ │ └── tabbar_queries@3x.png │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── GLWalkthrough.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── GLWalkthrough │ │ ├── GLWalkthrough-Info.plist │ │ ├── GLWalkthrough-dummy.m │ │ ├── GLWalkthrough-prefix.pch │ │ ├── GLWalkthrough-umbrella.h │ │ ├── GLWalkthrough.debug.xcconfig │ │ ├── GLWalkthrough.modulemap │ │ └── GLWalkthrough.release.xcconfig │ │ ├── Pods-GLWalkthrough_Example │ │ ├── Pods-GLWalkthrough_Example-Info.plist │ │ ├── Pods-GLWalkthrough_Example-acknowledgements.markdown │ │ ├── Pods-GLWalkthrough_Example-acknowledgements.plist │ │ ├── Pods-GLWalkthrough_Example-dummy.m │ │ ├── Pods-GLWalkthrough_Example-frameworks.sh │ │ ├── Pods-GLWalkthrough_Example-umbrella.h │ │ ├── Pods-GLWalkthrough_Example.debug.xcconfig │ │ ├── Pods-GLWalkthrough_Example.modulemap │ │ └── Pods-GLWalkthrough_Example.release.xcconfig │ │ └── Pods-GLWalkthrough_Tests │ │ ├── Pods-GLWalkthrough_Tests-Info.plist │ │ ├── Pods-GLWalkthrough_Tests-acknowledgements.markdown │ │ ├── Pods-GLWalkthrough_Tests-acknowledgements.plist │ │ ├── Pods-GLWalkthrough_Tests-dummy.m │ │ ├── Pods-GLWalkthrough_Tests-umbrella.h │ │ ├── Pods-GLWalkthrough_Tests.debug.xcconfig │ │ ├── Pods-GLWalkthrough_Tests.modulemap │ │ └── Pods-GLWalkthrough_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── GLWalkthrough.podspec ├── GLWalkthrough ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── GLWalkThrough.swift │ ├── GLWalkThroughContentView.swift │ └── GLWalkThroughContentView.xib ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/GLWalkthrough.xcworkspace -scheme GLWalkthrough-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Designs/screen_shot_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Designs/screen_shot_bottom.png -------------------------------------------------------------------------------- /Designs/screen_shot_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Designs/screen_shot_center.png -------------------------------------------------------------------------------- /Designs/screen_shot_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Designs/screen_shot_top.png -------------------------------------------------------------------------------- /Example/GLWalkthrough.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 48A2ACBE977DE1172C36CD8E /* Pods_GLWalkthrough_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C5CF82D7D4F1CC0F68B57CB8 /* Pods_GLWalkthrough_Example.framework */; }; 11 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 12 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 17 | 8FA703648298610A737322F5 /* Pods_GLWalkthrough_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F2A9DCF3730465BAA58E407A /* Pods_GLWalkthrough_Tests.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = GLWalkthrough; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 0EBD53955596F879BDD23332 /* GLWalkthrough.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = GLWalkthrough.podspec; path = ../GLWalkthrough.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 32 | 15CA4CF71571930F0F7F91E6 /* Pods-GLWalkthrough_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GLWalkthrough_Example.debug.xcconfig"; path = "Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example.debug.xcconfig"; sourceTree = ""; }; 33 | 3FD614A11EB877BC4F637128 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 34 | 607FACD01AFB9204008FA782 /* GLWalkthrough_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GLWalkthrough_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 36 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 38 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 39 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 40 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 41 | 607FACE51AFB9204008FA782 /* GLWalkthrough_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = GLWalkthrough_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 43 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 44 | 6910DA840E9FE9AA61D3B1F0 /* Pods-GLWalkthrough_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GLWalkthrough_Tests.debug.xcconfig"; path = "Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests.debug.xcconfig"; sourceTree = ""; }; 45 | 72FE10115C931A20AB028852 /* Pods-GLWalkthrough_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GLWalkthrough_Tests.release.xcconfig"; path = "Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests.release.xcconfig"; sourceTree = ""; }; 46 | 7582B3C3450F9A37E7D3478B /* Pods-GLWalkthrough_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GLWalkthrough_Example.release.xcconfig"; path = "Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example.release.xcconfig"; sourceTree = ""; }; 47 | C5CF82D7D4F1CC0F68B57CB8 /* Pods_GLWalkthrough_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GLWalkthrough_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | F2A9DCF3730465BAA58E407A /* Pods_GLWalkthrough_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GLWalkthrough_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | F3EB71A3DE850EB5CA273885 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 48A2ACBE977DE1172C36CD8E /* Pods_GLWalkthrough_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 8FA703648298610A737322F5 /* Pods_GLWalkthrough_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 607FACC71AFB9204008FA782 = { 73 | isa = PBXGroup; 74 | children = ( 75 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 76 | 607FACD21AFB9204008FA782 /* Example for GLWalkthrough */, 77 | 607FACE81AFB9204008FA782 /* Tests */, 78 | 607FACD11AFB9204008FA782 /* Products */, 79 | BE95A885A8FA93F877B882A2 /* Pods */, 80 | 627E411FA2461EE77F25E0FC /* Frameworks */, 81 | ); 82 | sourceTree = ""; 83 | }; 84 | 607FACD11AFB9204008FA782 /* Products */ = { 85 | isa = PBXGroup; 86 | children = ( 87 | 607FACD01AFB9204008FA782 /* GLWalkthrough_Example.app */, 88 | 607FACE51AFB9204008FA782 /* GLWalkthrough_Tests.xctest */, 89 | ); 90 | name = Products; 91 | sourceTree = ""; 92 | }; 93 | 607FACD21AFB9204008FA782 /* Example for GLWalkthrough */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 97 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 98 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 99 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 100 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 101 | 607FACD31AFB9204008FA782 /* Supporting Files */, 102 | ); 103 | name = "Example for GLWalkthrough"; 104 | path = GLWalkthrough; 105 | sourceTree = ""; 106 | }; 107 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 607FACD41AFB9204008FA782 /* Info.plist */, 111 | ); 112 | name = "Supporting Files"; 113 | sourceTree = ""; 114 | }; 115 | 607FACE81AFB9204008FA782 /* Tests */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 119 | 607FACE91AFB9204008FA782 /* Supporting Files */, 120 | ); 121 | path = Tests; 122 | sourceTree = ""; 123 | }; 124 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACEA1AFB9204008FA782 /* Info.plist */, 128 | ); 129 | name = "Supporting Files"; 130 | sourceTree = ""; 131 | }; 132 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 133 | isa = PBXGroup; 134 | children = ( 135 | 0EBD53955596F879BDD23332 /* GLWalkthrough.podspec */, 136 | 3FD614A11EB877BC4F637128 /* README.md */, 137 | F3EB71A3DE850EB5CA273885 /* LICENSE */, 138 | ); 139 | name = "Podspec Metadata"; 140 | sourceTree = ""; 141 | }; 142 | 627E411FA2461EE77F25E0FC /* Frameworks */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | C5CF82D7D4F1CC0F68B57CB8 /* Pods_GLWalkthrough_Example.framework */, 146 | F2A9DCF3730465BAA58E407A /* Pods_GLWalkthrough_Tests.framework */, 147 | ); 148 | name = Frameworks; 149 | sourceTree = ""; 150 | }; 151 | BE95A885A8FA93F877B882A2 /* Pods */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | 15CA4CF71571930F0F7F91E6 /* Pods-GLWalkthrough_Example.debug.xcconfig */, 155 | 7582B3C3450F9A37E7D3478B /* Pods-GLWalkthrough_Example.release.xcconfig */, 156 | 6910DA840E9FE9AA61D3B1F0 /* Pods-GLWalkthrough_Tests.debug.xcconfig */, 157 | 72FE10115C931A20AB028852 /* Pods-GLWalkthrough_Tests.release.xcconfig */, 158 | ); 159 | path = Pods; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* GLWalkthrough_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GLWalkthrough_Example" */; 168 | buildPhases = ( 169 | F857219A9C347DBDF82A9B6B /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | 19DB7E80BC826E4D9179EEBE /* [CP] Embed Pods Frameworks */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = GLWalkthrough_Example; 180 | productName = GLWalkthrough; 181 | productReference = 607FACD01AFB9204008FA782 /* GLWalkthrough_Example.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | 607FACE41AFB9204008FA782 /* GLWalkthrough_Tests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GLWalkthrough_Tests" */; 187 | buildPhases = ( 188 | 166C8F3B2253870F4CEB8ED0 /* [CP] Check Pods Manifest.lock */, 189 | 607FACE11AFB9204008FA782 /* Sources */, 190 | 607FACE21AFB9204008FA782 /* Frameworks */, 191 | 607FACE31AFB9204008FA782 /* Resources */, 192 | ); 193 | buildRules = ( 194 | ); 195 | dependencies = ( 196 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 197 | ); 198 | name = GLWalkthrough_Tests; 199 | productName = Tests; 200 | productReference = 607FACE51AFB9204008FA782 /* GLWalkthrough_Tests.xctest */; 201 | productType = "com.apple.product-type.bundle.unit-test"; 202 | }; 203 | /* End PBXNativeTarget section */ 204 | 205 | /* Begin PBXProject section */ 206 | 607FACC81AFB9204008FA782 /* Project object */ = { 207 | isa = PBXProject; 208 | attributes = { 209 | LastSwiftUpdateCheck = 0830; 210 | LastUpgradeCheck = 0830; 211 | ORGANIZATIONNAME = CocoaPods; 212 | TargetAttributes = { 213 | 607FACCF1AFB9204008FA782 = { 214 | CreatedOnToolsVersion = 6.3.1; 215 | LastSwiftMigration = 0900; 216 | }; 217 | 607FACE41AFB9204008FA782 = { 218 | CreatedOnToolsVersion = 6.3.1; 219 | LastSwiftMigration = 0900; 220 | TestTargetID = 607FACCF1AFB9204008FA782; 221 | }; 222 | }; 223 | }; 224 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "GLWalkthrough" */; 225 | compatibilityVersion = "Xcode 3.2"; 226 | developmentRegion = English; 227 | hasScannedForEncodings = 0; 228 | knownRegions = ( 229 | English, 230 | en, 231 | Base, 232 | ); 233 | mainGroup = 607FACC71AFB9204008FA782; 234 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 235 | projectDirPath = ""; 236 | projectRoot = ""; 237 | targets = ( 238 | 607FACCF1AFB9204008FA782 /* GLWalkthrough_Example */, 239 | 607FACE41AFB9204008FA782 /* GLWalkthrough_Tests */, 240 | ); 241 | }; 242 | /* End PBXProject section */ 243 | 244 | /* Begin PBXResourcesBuildPhase section */ 245 | 607FACCE1AFB9204008FA782 /* Resources */ = { 246 | isa = PBXResourcesBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 250 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 251 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | 607FACE31AFB9204008FA782 /* Resources */ = { 256 | isa = PBXResourcesBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | /* End PBXResourcesBuildPhase section */ 263 | 264 | /* Begin PBXShellScriptBuildPhase section */ 265 | 166C8F3B2253870F4CEB8ED0 /* [CP] Check Pods Manifest.lock */ = { 266 | isa = PBXShellScriptBuildPhase; 267 | buildActionMask = 2147483647; 268 | files = ( 269 | ); 270 | inputFileListPaths = ( 271 | ); 272 | inputPaths = ( 273 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 274 | "${PODS_ROOT}/Manifest.lock", 275 | ); 276 | name = "[CP] Check Pods Manifest.lock"; 277 | outputFileListPaths = ( 278 | ); 279 | outputPaths = ( 280 | "$(DERIVED_FILE_DIR)/Pods-GLWalkthrough_Tests-checkManifestLockResult.txt", 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | shellPath = /bin/sh; 284 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 285 | showEnvVarsInLog = 0; 286 | }; 287 | 19DB7E80BC826E4D9179EEBE /* [CP] Embed Pods Frameworks */ = { 288 | isa = PBXShellScriptBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | ); 292 | inputPaths = ( 293 | "${PODS_ROOT}/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-frameworks.sh", 294 | "${BUILT_PRODUCTS_DIR}/GLWalkthrough/GLWalkthrough.framework", 295 | ); 296 | name = "[CP] Embed Pods Frameworks"; 297 | outputPaths = ( 298 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GLWalkthrough.framework", 299 | ); 300 | runOnlyForDeploymentPostprocessing = 0; 301 | shellPath = /bin/sh; 302 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-frameworks.sh\"\n"; 303 | showEnvVarsInLog = 0; 304 | }; 305 | F857219A9C347DBDF82A9B6B /* [CP] Check Pods Manifest.lock */ = { 306 | isa = PBXShellScriptBuildPhase; 307 | buildActionMask = 2147483647; 308 | files = ( 309 | ); 310 | inputFileListPaths = ( 311 | ); 312 | inputPaths = ( 313 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 314 | "${PODS_ROOT}/Manifest.lock", 315 | ); 316 | name = "[CP] Check Pods Manifest.lock"; 317 | outputFileListPaths = ( 318 | ); 319 | outputPaths = ( 320 | "$(DERIVED_FILE_DIR)/Pods-GLWalkthrough_Example-checkManifestLockResult.txt", 321 | ); 322 | runOnlyForDeploymentPostprocessing = 0; 323 | shellPath = /bin/sh; 324 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 325 | showEnvVarsInLog = 0; 326 | }; 327 | /* End PBXShellScriptBuildPhase section */ 328 | 329 | /* Begin PBXSourcesBuildPhase section */ 330 | 607FACCC1AFB9204008FA782 /* Sources */ = { 331 | isa = PBXSourcesBuildPhase; 332 | buildActionMask = 2147483647; 333 | files = ( 334 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 335 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | 607FACE11AFB9204008FA782 /* Sources */ = { 340 | isa = PBXSourcesBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 344 | ); 345 | runOnlyForDeploymentPostprocessing = 0; 346 | }; 347 | /* End PBXSourcesBuildPhase section */ 348 | 349 | /* Begin PBXTargetDependency section */ 350 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 351 | isa = PBXTargetDependency; 352 | target = 607FACCF1AFB9204008FA782 /* GLWalkthrough_Example */; 353 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 354 | }; 355 | /* End PBXTargetDependency section */ 356 | 357 | /* Begin PBXVariantGroup section */ 358 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 359 | isa = PBXVariantGroup; 360 | children = ( 361 | 607FACDA1AFB9204008FA782 /* Base */, 362 | ); 363 | name = Main.storyboard; 364 | sourceTree = ""; 365 | }; 366 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 367 | isa = PBXVariantGroup; 368 | children = ( 369 | 607FACDF1AFB9204008FA782 /* Base */, 370 | ); 371 | name = LaunchScreen.xib; 372 | sourceTree = ""; 373 | }; 374 | /* End PBXVariantGroup section */ 375 | 376 | /* Begin XCBuildConfiguration section */ 377 | 607FACED1AFB9204008FA782 /* Debug */ = { 378 | isa = XCBuildConfiguration; 379 | buildSettings = { 380 | ALWAYS_SEARCH_USER_PATHS = NO; 381 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 382 | CLANG_CXX_LIBRARY = "libc++"; 383 | CLANG_ENABLE_MODULES = YES; 384 | CLANG_ENABLE_OBJC_ARC = YES; 385 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 386 | CLANG_WARN_BOOL_CONVERSION = YES; 387 | CLANG_WARN_COMMA = YES; 388 | CLANG_WARN_CONSTANT_CONVERSION = YES; 389 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 390 | CLANG_WARN_EMPTY_BODY = YES; 391 | CLANG_WARN_ENUM_CONVERSION = YES; 392 | CLANG_WARN_INFINITE_RECURSION = YES; 393 | CLANG_WARN_INT_CONVERSION = YES; 394 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 395 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 397 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 398 | CLANG_WARN_STRICT_PROTOTYPES = YES; 399 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 400 | CLANG_WARN_UNREACHABLE_CODE = YES; 401 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 402 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 403 | COPY_PHASE_STRIP = NO; 404 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 405 | ENABLE_STRICT_OBJC_MSGSEND = YES; 406 | ENABLE_TESTABILITY = YES; 407 | GCC_C_LANGUAGE_STANDARD = gnu99; 408 | GCC_DYNAMIC_NO_PIC = NO; 409 | GCC_NO_COMMON_BLOCKS = YES; 410 | GCC_OPTIMIZATION_LEVEL = 0; 411 | GCC_PREPROCESSOR_DEFINITIONS = ( 412 | "DEBUG=1", 413 | "$(inherited)", 414 | ); 415 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 416 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 417 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 418 | GCC_WARN_UNDECLARED_SELECTOR = YES; 419 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 420 | GCC_WARN_UNUSED_FUNCTION = YES; 421 | GCC_WARN_UNUSED_VARIABLE = YES; 422 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 423 | MTL_ENABLE_DEBUG_INFO = YES; 424 | ONLY_ACTIVE_ARCH = YES; 425 | SDKROOT = iphoneos; 426 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 427 | }; 428 | name = Debug; 429 | }; 430 | 607FACEE1AFB9204008FA782 /* Release */ = { 431 | isa = XCBuildConfiguration; 432 | buildSettings = { 433 | ALWAYS_SEARCH_USER_PATHS = NO; 434 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 435 | CLANG_CXX_LIBRARY = "libc++"; 436 | CLANG_ENABLE_MODULES = YES; 437 | CLANG_ENABLE_OBJC_ARC = YES; 438 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 439 | CLANG_WARN_BOOL_CONVERSION = YES; 440 | CLANG_WARN_COMMA = YES; 441 | CLANG_WARN_CONSTANT_CONVERSION = YES; 442 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 443 | CLANG_WARN_EMPTY_BODY = YES; 444 | CLANG_WARN_ENUM_CONVERSION = YES; 445 | CLANG_WARN_INFINITE_RECURSION = YES; 446 | CLANG_WARN_INT_CONVERSION = YES; 447 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 448 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 449 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 450 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 451 | CLANG_WARN_STRICT_PROTOTYPES = YES; 452 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 453 | CLANG_WARN_UNREACHABLE_CODE = YES; 454 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 455 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 456 | COPY_PHASE_STRIP = NO; 457 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 458 | ENABLE_NS_ASSERTIONS = NO; 459 | ENABLE_STRICT_OBJC_MSGSEND = YES; 460 | GCC_C_LANGUAGE_STANDARD = gnu99; 461 | GCC_NO_COMMON_BLOCKS = YES; 462 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 463 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 464 | GCC_WARN_UNDECLARED_SELECTOR = YES; 465 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 466 | GCC_WARN_UNUSED_FUNCTION = YES; 467 | GCC_WARN_UNUSED_VARIABLE = YES; 468 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 469 | MTL_ENABLE_DEBUG_INFO = NO; 470 | SDKROOT = iphoneos; 471 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 472 | VALIDATE_PRODUCT = YES; 473 | }; 474 | name = Release; 475 | }; 476 | 607FACF01AFB9204008FA782 /* Debug */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = 15CA4CF71571930F0F7F91E6 /* Pods-GLWalkthrough_Example.debug.xcconfig */; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | INFOPLIST_FILE = GLWalkthrough/Info.plist; 482 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 483 | MODULE_NAME = ExampleApp; 484 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 485 | PRODUCT_NAME = "$(TARGET_NAME)"; 486 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 487 | SWIFT_VERSION = 4.0; 488 | }; 489 | name = Debug; 490 | }; 491 | 607FACF11AFB9204008FA782 /* Release */ = { 492 | isa = XCBuildConfiguration; 493 | baseConfigurationReference = 7582B3C3450F9A37E7D3478B /* Pods-GLWalkthrough_Example.release.xcconfig */; 494 | buildSettings = { 495 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 496 | INFOPLIST_FILE = GLWalkthrough/Info.plist; 497 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 498 | MODULE_NAME = ExampleApp; 499 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 500 | PRODUCT_NAME = "$(TARGET_NAME)"; 501 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 502 | SWIFT_VERSION = 4.0; 503 | }; 504 | name = Release; 505 | }; 506 | 607FACF31AFB9204008FA782 /* Debug */ = { 507 | isa = XCBuildConfiguration; 508 | baseConfigurationReference = 6910DA840E9FE9AA61D3B1F0 /* Pods-GLWalkthrough_Tests.debug.xcconfig */; 509 | buildSettings = { 510 | FRAMEWORK_SEARCH_PATHS = ( 511 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 512 | "$(inherited)", 513 | ); 514 | GCC_PREPROCESSOR_DEFINITIONS = ( 515 | "DEBUG=1", 516 | "$(inherited)", 517 | ); 518 | INFOPLIST_FILE = Tests/Info.plist; 519 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 520 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 521 | PRODUCT_NAME = "$(TARGET_NAME)"; 522 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 523 | SWIFT_VERSION = 4.0; 524 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/GLWalkthrough_Example.app/GLWalkthrough_Example"; 525 | }; 526 | name = Debug; 527 | }; 528 | 607FACF41AFB9204008FA782 /* Release */ = { 529 | isa = XCBuildConfiguration; 530 | baseConfigurationReference = 72FE10115C931A20AB028852 /* Pods-GLWalkthrough_Tests.release.xcconfig */; 531 | buildSettings = { 532 | FRAMEWORK_SEARCH_PATHS = ( 533 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 534 | "$(inherited)", 535 | ); 536 | INFOPLIST_FILE = Tests/Info.plist; 537 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 538 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 539 | PRODUCT_NAME = "$(TARGET_NAME)"; 540 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 541 | SWIFT_VERSION = 4.0; 542 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/GLWalkthrough_Example.app/GLWalkthrough_Example"; 543 | }; 544 | name = Release; 545 | }; 546 | /* End XCBuildConfiguration section */ 547 | 548 | /* Begin XCConfigurationList section */ 549 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "GLWalkthrough" */ = { 550 | isa = XCConfigurationList; 551 | buildConfigurations = ( 552 | 607FACED1AFB9204008FA782 /* Debug */, 553 | 607FACEE1AFB9204008FA782 /* Release */, 554 | ); 555 | defaultConfigurationIsVisible = 0; 556 | defaultConfigurationName = Release; 557 | }; 558 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GLWalkthrough_Example" */ = { 559 | isa = XCConfigurationList; 560 | buildConfigurations = ( 561 | 607FACF01AFB9204008FA782 /* Debug */, 562 | 607FACF11AFB9204008FA782 /* Release */, 563 | ); 564 | defaultConfigurationIsVisible = 0; 565 | defaultConfigurationName = Release; 566 | }; 567 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GLWalkthrough_Tests" */ = { 568 | isa = XCConfigurationList; 569 | buildConfigurations = ( 570 | 607FACF31AFB9204008FA782 /* Debug */, 571 | 607FACF41AFB9204008FA782 /* Release */, 572 | ); 573 | defaultConfigurationIsVisible = 0; 574 | defaultConfigurationName = Release; 575 | }; 576 | /* End XCConfigurationList section */ 577 | }; 578 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 579 | } 580 | -------------------------------------------------------------------------------- /Example/GLWalkthrough.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/GLWalkthrough.xcodeproj/xcshareddata/xcschemes/GLWalkthrough-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 45 | 46 | 48 | 54 | 55 | 56 | 57 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 80 | 82 | 88 | 89 | 90 | 91 | 92 | 93 | 99 | 101 | 107 | 108 | 109 | 110 | 112 | 113 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Example/GLWalkthrough.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/GLWalkthrough.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // GLWalkthrough 4 | // 5 | // Created by gokulgovind on 03/04/2021. 6 | // Copyright (c) 2021 gokulgovind. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/isro.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "isro.jpeg", 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 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/isro.imageset/isro.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/isro.imageset/isro.jpeg -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/nasa.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "nasa.jpeg", 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 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/nasa.imageset/nasa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/nasa.imageset/nasa.jpeg -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/satelite.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "satelite.jpeg", 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 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/satelite.imageset/satelite.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/satelite.imageset/satelite.jpeg -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/spacex.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "spacex.jpeg", 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 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/spacex.imageset/spacex.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/spacex.imageset/spacex.jpeg -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/user_placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "user_placeholder.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "user_placeholder@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "user_placeholder@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/user_placeholder.imageset/user_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/user_placeholder.imageset/user_placeholder.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/user_placeholder.imageset/user_placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/user_placeholder.imageset/user_placeholder@2x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/user_placeholder.imageset/user_placeholder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/user_placeholder.imageset/user_placeholder@3x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/video_play_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "video_play_icon.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "video_play_icon@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "video_play_icon@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/video_play_icon.imageset/video_play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/video_play_icon.imageset/video_play_icon.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/video_play_icon.imageset/video_play_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/video_play_icon.imageset/video_play_icon@2x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/Placeholders/video_play_icon.imageset/video_play_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/Placeholders/video_play_icon.imageset/video_play_icon@3x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_home.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "tabbar_home.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "tabbar_home@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "tabbar_home@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_home.imageset/tabbar_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_home.imageset/tabbar_home.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_home.imageset/tabbar_home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_home.imageset/tabbar_home@2x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_home.imageset/tabbar_home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_home.imageset/tabbar_home@3x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_my_protalk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "tabbar_my_protalk.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "tabbar_my_protalk@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "tabbar_my_protalk@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_my_protalk.imageset/tabbar_my_protalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_my_protalk.imageset/tabbar_my_protalk.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_my_protalk.imageset/tabbar_my_protalk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_my_protalk.imageset/tabbar_my_protalk@2x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_my_protalk.imageset/tabbar_my_protalk@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_my_protalk.imageset/tabbar_my_protalk@3x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "tabbar_profile.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "tabbar_profile@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "tabbar_profile@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_profile.imageset/tabbar_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_profile.imageset/tabbar_profile.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_profile.imageset/tabbar_profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_profile.imageset/tabbar_profile@2x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_profile.imageset/tabbar_profile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_profile.imageset/tabbar_profile@3x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_queries.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "tabbar_queries.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "tabbar_queries@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "tabbar_queries@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_queries.imageset/tabbar_queries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_queries.imageset/tabbar_queries.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_queries.imageset/tabbar_queries@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_queries.imageset/tabbar_queries@2x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Images.xcassets/tabbar_queries.imageset/tabbar_queries@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/Example/GLWalkthrough/Images.xcassets/tabbar_queries.imageset/tabbar_queries@3x.png -------------------------------------------------------------------------------- /Example/GLWalkthrough/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/GLWalkthrough/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // GLWalkthrough 4 | // 5 | // Created by gokulgovind on 03/04/2021. 6 | // Copyright (c) 2021 gokulgovind. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import GLWalkthrough 11 | 12 | class ViewController: UITableViewController { 13 | 14 | var coachMarker:GLWalkThrough! 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | coachMarker = GLWalkThrough() 19 | coachMarker.dataSource = self 20 | coachMarker.delegate = self 21 | coachMarker.show() 22 | // Do any additional setup after loading the view, typically from a nib. 23 | } 24 | 25 | override func didReceiveMemoryWarning() { 26 | super.didReceiveMemoryWarning() 27 | // Dispose of any resources that can be recreated. 28 | } 29 | 30 | @IBAction func showPreview(_ sender: UIBarButtonItem) { 31 | coachMarker = GLWalkThrough() 32 | coachMarker.dataSource = self 33 | coachMarker.delegate = self 34 | coachMarker.show() 35 | } 36 | 37 | override func numberOfSections(in tableView: UITableView) -> Int { 38 | return 1 39 | } 40 | 41 | override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 42 | return 5 43 | } 44 | } 45 | 46 | 47 | 48 | // MARk: -- 49 | extension ViewController: GLWalkThroughDelegate { 50 | func didSelectNextAtIndex(index: Int) { 51 | if index == 7 { 52 | coachMarker.dismiss() 53 | let alert = UIAlertController(title: "Walkthrough Completed", message: nil, preferredStyle: .alert) 54 | alert.addAction(UIAlertAction(title: "OK", style: .cancel, handler: nil)) 55 | self.present(alert, animated: true, completion: nil) 56 | } 57 | } 58 | 59 | func didSelectSkip(index: Int) { 60 | coachMarker.dismiss() 61 | } 62 | 63 | 64 | } 65 | extension ViewController: GLWalkThroughDataSource { 66 | func getTabbarFrame(index:Int) -> CGRect? { 67 | if let bar = self.tabBarController?.tabBar.subviews { 68 | var idx = 0 69 | var frame:CGRect! 70 | for view in bar { 71 | if view.isKind(of: NSClassFromString("UITabBarButton")!) { 72 | print(view.description) 73 | if idx == index { 74 | frame = view.frame 75 | } 76 | idx += 1 77 | } 78 | } 79 | return frame 80 | } 81 | return nil 82 | } 83 | 84 | func numberOfItems() -> Int { 85 | return 7 86 | } 87 | 88 | func configForItemAtIndex(index: Int) -> GLWalkThroughConfig { 89 | let tabbarPadding:CGFloat = Helper.shared.hasTopNotch ? 88 : 50 90 | let overlaySize:CGFloat = Helper.shared.hasTopNotch ? 60 : 50 91 | let leftPadding:CGFloat = Helper.shared.hasTopNotch ? 10 : 5 92 | switch index { 93 | case 0: 94 | var config = GLWalkThroughConfig() 95 | config.title = "Home Screen" 96 | config.subtitle = "Here you can explore Services, Articles, plans" 97 | config.frameOverWindow = CGRect(x: 10, y: 37, width: overlaySize, height: overlaySize) 98 | config.position = .topLeft 99 | return config 100 | case 1: 101 | var config = GLWalkThroughConfig() 102 | config.title = "Restart" 103 | config.subtitle = "Restart walkthrough sample" 104 | config.frameOverWindow = CGRect(x: view.frame.size.width - 65, y: 45, width: overlaySize, height: overlaySize) 105 | config.position = .topRight 106 | return config 107 | case 2: 108 | guard let frame = getTabbarFrame(index: 0) else { 109 | return GLWalkThroughConfig() 110 | } 111 | var config = GLWalkThroughConfig() 112 | config.title = "Home Screen" 113 | config.subtitle = "Here you can explore Services, Articles, plans" 114 | config.frameOverWindow = CGRect(x: frame.origin.x + leftPadding, y: view.frame.size.height - tabbarPadding, width: overlaySize, height: overlaySize) 115 | 116 | return config 117 | case 3: 118 | guard let frame = getTabbarFrame(index: 1) else { 119 | return GLWalkThroughConfig() 120 | } 121 | var config = GLWalkThroughConfig() 122 | config.title = "Share" 123 | config.subtitle = "Consists Ongoing Expert chats, Plans, Requests" 124 | config.frameOverWindow = CGRect(x: frame.origin.x + leftPadding, y: view.frame.size.height - tabbarPadding, width: overlaySize, height: overlaySize) 125 | config.position = .bottomLeft 126 | return config 127 | case 4: 128 | guard let frame = getTabbarFrame(index: 2) else { 129 | return GLWalkThroughConfig() 130 | } 131 | var config = GLWalkThroughConfig() 132 | config.title = "General Queries" 133 | config.subtitle = "Ask your question in a General Forum" 134 | config.frameOverWindow = CGRect(x: frame.origin.x + leftPadding, y: view.frame.size.height - tabbarPadding, width: overlaySize, height: overlaySize) 135 | config.position = .bottomCenter 136 | return config 137 | 138 | 139 | case 5: 140 | guard let frame = getTabbarFrame(index: 3) else { 141 | return GLWalkThroughConfig() 142 | } 143 | var config = GLWalkThroughConfig() 144 | config.title = "My Profile" 145 | config.subtitle = "Your Account details, Wallets, Settings" 146 | config.frameOverWindow = CGRect(x: frame.origin.x + leftPadding, y: view.frame.size.height - tabbarPadding, width: overlaySize, height: overlaySize) 147 | config.position = .bottomRight 148 | return config 149 | case 6: 150 | guard let frame = getTabbarFrame(index: 4) else { 151 | return GLWalkThroughConfig() 152 | } 153 | var config = GLWalkThroughConfig() 154 | config.title = "ChatBot" 155 | config.subtitle = "Ask a Service, Query, Plan to Bot" 156 | config.nextBtnTitle = "Ask a Query" 157 | 158 | config.frameOverWindow = CGRect(x: frame.origin.x + leftPadding, y: view.frame.size.height - tabbarPadding, width: overlaySize, height: overlaySize) 159 | config.position = .bottomRight 160 | return config 161 | case 7: 162 | 163 | var config = GLWalkThroughConfig() 164 | config.title = "ChatBot" 165 | config.subtitle = "Ask a Service, Query, Plan to Bot" 166 | config.nextBtnTitle = "Ask a Query" 167 | 168 | // config.frameOverWindow = CGRect 169 | config.position = .bottomCenter 170 | return config 171 | default: 172 | return GLWalkThroughConfig() 173 | } 174 | } 175 | 176 | 177 | } 178 | 179 | 180 | struct Helper { 181 | static var shared = Helper() 182 | 183 | var hasTopNotch: Bool { 184 | if #available(iOS 11.0, tvOS 11.0, *) { 185 | return UIApplication.shared.delegate?.window??.safeAreaInsets.top ?? 0 > 20 186 | } 187 | return false 188 | } 189 | } 190 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | platform :ios, '9.0' 4 | 5 | target 'GLWalkthrough_Example' do 6 | pod 'GLWalkthrough', :path => '../' 7 | 8 | target 'GLWalkthrough_Tests' do 9 | inherit! :search_paths 10 | 11 | 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - GLWalkthrough (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - GLWalkthrough (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | GLWalkthrough: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | GLWalkthrough: eb64b13d8170b470df693f0284d81e94fe9fe200 13 | 14 | PODFILE CHECKSUM: 6d2303fd7996f4861b60bcf11c49051e82a40304 15 | 16 | COCOAPODS: 1.10.0 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/GLWalkthrough.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "GLWalkthrough", 3 | "version": "0.1.0", 4 | "summary": "A short description of GLWalkthrough.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/gokulgovind/GLWalkthrough", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "gokulgovind": "gokul.g@payoda.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/gokulgovind/GLWalkthrough.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "9.0" 20 | }, 21 | "source_files": "GLWalkthrough/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - GLWalkthrough (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - GLWalkthrough (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | GLWalkthrough: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | GLWalkthrough: eb64b13d8170b470df693f0284d81e94fe9fe200 13 | 14 | PODFILE CHECKSUM: 6d2303fd7996f4861b60bcf11c49051e82a40304 15 | 16 | COCOAPODS: 1.10.0 17 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 2CA071639E4586DF00D14EE0713379C2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 11 | 3362DF3F3FBD3B04F88B7187F306F134 /* Pods-GLWalkthrough_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71384F1224DBC88BFE9DBAE20D01AB9B /* Pods-GLWalkthrough_Tests-dummy.m */; }; 12 | 4055ADEBE266770B1932B5A9C9B4B07B /* Pods-GLWalkthrough_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 863B0D91A0A6F35921E816C892B6E088 /* Pods-GLWalkthrough_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 40E1C495FEE74B850E2D34A93BFA8963 /* GLWalkthrough-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A3F1FF3DC20633A0FC907037A94FE5E /* GLWalkthrough-dummy.m */; }; 14 | 8646CE53E37AA721630A87F39777593A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 15 | 89C8127AB8646640D9F19A0FB378639F /* Pods-GLWalkthrough_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AB560530E2FE389BD46A94E87B441DC6 /* Pods-GLWalkthrough_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 9BF57718AE0E73DF683F188A062417A9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 17 | 9E511C7BA96C157089863BD527B71ED4 /* Pods-GLWalkthrough_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 47B18004AEBEB07F9459E117156C7578 /* Pods-GLWalkthrough_Example-dummy.m */; }; 18 | B128C03125F532720062DB97 /* GLWalkThrough.swift in Sources */ = {isa = PBXBuildFile; fileRef = B128C03025F532720062DB97 /* GLWalkThrough.swift */; }; 19 | B128C03725F532820062DB97 /* GLWalkThroughContentView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B128C03525F532820062DB97 /* GLWalkThroughContentView.xib */; }; 20 | B128C03825F532820062DB97 /* GLWalkThroughContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B128C03625F532820062DB97 /* GLWalkThroughContentView.swift */; }; 21 | CD01108E82D819AE93B56757A068BFC4 /* GLWalkthrough-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2F055A54EDA0E56F57E8C8B1DA7A1C /* GLWalkthrough-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | 137E4F2F7D3B1C974EA0F8AE6E5E6E56 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = 2AB02C8508EA6C0CBE2AB3588913369C; 30 | remoteInfo = GLWalkthrough; 31 | }; 32 | B5E0202CDE878FD2EDAEADC44C9CFCC8 /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = 85F3D37031830D39CD679F302C37F12E; 37 | remoteInfo = "Pods-GLWalkthrough_Example"; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 0E3D00DEB743457A9C14CCE00DBC0D59 /* GLWalkthrough.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = GLWalkthrough.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 43 | 1B4D418D4EF06059470DFBB1C9788142 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 44 | 1CD3FB26E968D9B54D40FE95CFBFA265 /* Pods-GLWalkthrough_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GLWalkthrough_Tests.release.xcconfig"; sourceTree = ""; }; 45 | 24DF8A2929EF07F020D698EBDCCDC4B1 /* GLWalkthrough-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GLWalkthrough-prefix.pch"; sourceTree = ""; }; 46 | 2A3F1FF3DC20633A0FC907037A94FE5E /* GLWalkthrough-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GLWalkthrough-dummy.m"; sourceTree = ""; }; 47 | 33A02E4FD764477D9CF0871A06FB12AA /* Pods-GLWalkthrough_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GLWalkthrough_Example-acknowledgements.plist"; sourceTree = ""; }; 48 | 47B18004AEBEB07F9459E117156C7578 /* Pods-GLWalkthrough_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-GLWalkthrough_Example-dummy.m"; sourceTree = ""; }; 49 | 482ACD5B1D1DA5B6A9065302853FB728 /* Pods_GLWalkthrough_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GLWalkthrough_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | 64B2D1483B6C05995C2A1ED0519B70B2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 51 | 67EFFC565F297617CA203BD105154FFD /* GLWalkthrough-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GLWalkthrough-Info.plist"; sourceTree = ""; }; 52 | 71384F1224DBC88BFE9DBAE20D01AB9B /* Pods-GLWalkthrough_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-GLWalkthrough_Tests-dummy.m"; sourceTree = ""; }; 53 | 71FA2CEBDE355B565836179940A6E558 /* Pods-GLWalkthrough_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GLWalkthrough_Example.debug.xcconfig"; sourceTree = ""; }; 54 | 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 55 | 786EA3CA8E3F9754B615BCD72CBD2026 /* Pods-GLWalkthrough_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GLWalkthrough_Tests.debug.xcconfig"; sourceTree = ""; }; 56 | 852B8258E46E710A60689D7718D765D1 /* Pods-GLWalkthrough_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GLWalkthrough_Example-frameworks.sh"; sourceTree = ""; }; 57 | 863B0D91A0A6F35921E816C892B6E088 /* Pods-GLWalkthrough_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-GLWalkthrough_Example-umbrella.h"; sourceTree = ""; }; 58 | 8A5C49AF1F11573BC1309C76BC5FA077 /* Pods-GLWalkthrough_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-GLWalkthrough_Tests.modulemap"; sourceTree = ""; }; 59 | 8EC3DE598B2838235BC40764B3CA278D /* Pods-GLWalkthrough_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GLWalkthrough_Example-Info.plist"; sourceTree = ""; }; 60 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 61 | A654E346F55CB27EC87D50B7783EFF6A /* Pods-GLWalkthrough_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-GLWalkthrough_Tests-acknowledgements.markdown"; sourceTree = ""; }; 62 | A920FFD75B8F02BB1E4CF556CE0D1B87 /* Pods-GLWalkthrough_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-GLWalkthrough_Example.modulemap"; sourceTree = ""; }; 63 | A948FE83587698799C3F24582FDE4E13 /* Pods_GLWalkthrough_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GLWalkthrough_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 64 | AB560530E2FE389BD46A94E87B441DC6 /* Pods-GLWalkthrough_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-GLWalkthrough_Tests-umbrella.h"; sourceTree = ""; }; 65 | AC2F055A54EDA0E56F57E8C8B1DA7A1C /* GLWalkthrough-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GLWalkthrough-umbrella.h"; sourceTree = ""; }; 66 | B128C03025F532720062DB97 /* GLWalkThrough.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = GLWalkThrough.swift; path = ../GLWalkthrough/Classes/GLWalkThrough.swift; sourceTree = ""; }; 67 | B128C03525F532820062DB97 /* GLWalkThroughContentView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = GLWalkThroughContentView.xib; path = ../GLWalkthrough/Classes/GLWalkThroughContentView.xib; sourceTree = ""; }; 68 | B128C03625F532820062DB97 /* GLWalkThroughContentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = GLWalkThroughContentView.swift; path = ../GLWalkthrough/Classes/GLWalkThroughContentView.swift; sourceTree = ""; }; 69 | B9CA3DE6202E721B851A63895B455EF7 /* GLWalkthrough.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GLWalkthrough.debug.xcconfig; sourceTree = ""; }; 70 | BA1B212B1F7C4A47EC96FDEDC9F58F96 /* GLWalkthrough.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GLWalkthrough.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 71 | C57C08CE8EEDCCE0D3E6D6AA1AE1DECB /* GLWalkthrough.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GLWalkthrough.modulemap; sourceTree = ""; }; 72 | CDA5BAAF0B49A0F07B7E07D85D41DF84 /* Pods-GLWalkthrough_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GLWalkthrough_Tests-acknowledgements.plist"; sourceTree = ""; }; 73 | E2255B86D798D2B338C0FCDDD263BFCA /* Pods-GLWalkthrough_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GLWalkthrough_Example.release.xcconfig"; sourceTree = ""; }; 74 | F1563B21103BE8CE988B6464B70AB76D /* Pods-GLWalkthrough_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GLWalkthrough_Tests-Info.plist"; sourceTree = ""; }; 75 | F35F3A97DB7F4602571665A44F4304C5 /* GLWalkthrough.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GLWalkthrough.release.xcconfig; sourceTree = ""; }; 76 | F59117F77273AC289C353AB63C4EEF0E /* Pods-GLWalkthrough_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-GLWalkthrough_Example-acknowledgements.markdown"; sourceTree = ""; }; 77 | /* End PBXFileReference section */ 78 | 79 | /* Begin PBXFrameworksBuildPhase section */ 80 | 5C3D5CD4779ADE9C0BBDA6D04583EF9A /* Frameworks */ = { 81 | isa = PBXFrameworksBuildPhase; 82 | buildActionMask = 2147483647; 83 | files = ( 84 | 9BF57718AE0E73DF683F188A062417A9 /* Foundation.framework in Frameworks */, 85 | ); 86 | runOnlyForDeploymentPostprocessing = 0; 87 | }; 88 | B573B1C1CFCE8526157A9A40F0BF47CD /* Frameworks */ = { 89 | isa = PBXFrameworksBuildPhase; 90 | buildActionMask = 2147483647; 91 | files = ( 92 | 2CA071639E4586DF00D14EE0713379C2 /* Foundation.framework in Frameworks */, 93 | ); 94 | runOnlyForDeploymentPostprocessing = 0; 95 | }; 96 | BF4AA3E6EB118B221C293B0F3968B1F3 /* Frameworks */ = { 97 | isa = PBXFrameworksBuildPhase; 98 | buildActionMask = 2147483647; 99 | files = ( 100 | 8646CE53E37AA721630A87F39777593A /* Foundation.framework in Frameworks */, 101 | ); 102 | runOnlyForDeploymentPostprocessing = 0; 103 | }; 104 | /* End PBXFrameworksBuildPhase section */ 105 | 106 | /* Begin PBXGroup section */ 107 | 0F77AFDB1E3467509743F0D34936A5B0 /* Development Pods */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 31E965990562CB656D24896CDC55D577 /* GLWalkthrough */, 111 | ); 112 | name = "Development Pods"; 113 | sourceTree = ""; 114 | }; 115 | 31E965990562CB656D24896CDC55D577 /* GLWalkthrough */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | B128C02525F517820062DB97 /* Classes */, 119 | 7B7D6FD6BA61DA40E957167A7C1078C1 /* Pod */, 120 | 900C88BFA7A58D5694BC0789E1E01BB8 /* Support Files */, 121 | ); 122 | name = GLWalkthrough; 123 | path = ../..; 124 | sourceTree = ""; 125 | }; 126 | 3BCB992C2E08A42104A668FB0A687A60 /* Targets Support Files */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | CBC0A3BE86E9C1F73871172BE9DF6513 /* Pods-GLWalkthrough_Example */, 130 | 96D53F8D34EE6706876AD72DCB34D31B /* Pods-GLWalkthrough_Tests */, 131 | ); 132 | name = "Targets Support Files"; 133 | sourceTree = ""; 134 | }; 135 | 578452D2E740E91742655AC8F1636D1F /* iOS */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */, 139 | ); 140 | name = iOS; 141 | sourceTree = ""; 142 | }; 143 | 7B7D6FD6BA61DA40E957167A7C1078C1 /* Pod */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | 0E3D00DEB743457A9C14CCE00DBC0D59 /* GLWalkthrough.podspec */, 147 | 64B2D1483B6C05995C2A1ED0519B70B2 /* LICENSE */, 148 | 1B4D418D4EF06059470DFBB1C9788142 /* README.md */, 149 | ); 150 | name = Pod; 151 | sourceTree = ""; 152 | }; 153 | 900C88BFA7A58D5694BC0789E1E01BB8 /* Support Files */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | C57C08CE8EEDCCE0D3E6D6AA1AE1DECB /* GLWalkthrough.modulemap */, 157 | 2A3F1FF3DC20633A0FC907037A94FE5E /* GLWalkthrough-dummy.m */, 158 | 67EFFC565F297617CA203BD105154FFD /* GLWalkthrough-Info.plist */, 159 | 24DF8A2929EF07F020D698EBDCCDC4B1 /* GLWalkthrough-prefix.pch */, 160 | AC2F055A54EDA0E56F57E8C8B1DA7A1C /* GLWalkthrough-umbrella.h */, 161 | B9CA3DE6202E721B851A63895B455EF7 /* GLWalkthrough.debug.xcconfig */, 162 | F35F3A97DB7F4602571665A44F4304C5 /* GLWalkthrough.release.xcconfig */, 163 | ); 164 | name = "Support Files"; 165 | path = "Example/Pods/Target Support Files/GLWalkthrough"; 166 | sourceTree = ""; 167 | }; 168 | 96D53F8D34EE6706876AD72DCB34D31B /* Pods-GLWalkthrough_Tests */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 8A5C49AF1F11573BC1309C76BC5FA077 /* Pods-GLWalkthrough_Tests.modulemap */, 172 | A654E346F55CB27EC87D50B7783EFF6A /* Pods-GLWalkthrough_Tests-acknowledgements.markdown */, 173 | CDA5BAAF0B49A0F07B7E07D85D41DF84 /* Pods-GLWalkthrough_Tests-acknowledgements.plist */, 174 | 71384F1224DBC88BFE9DBAE20D01AB9B /* Pods-GLWalkthrough_Tests-dummy.m */, 175 | F1563B21103BE8CE988B6464B70AB76D /* Pods-GLWalkthrough_Tests-Info.plist */, 176 | AB560530E2FE389BD46A94E87B441DC6 /* Pods-GLWalkthrough_Tests-umbrella.h */, 177 | 786EA3CA8E3F9754B615BCD72CBD2026 /* Pods-GLWalkthrough_Tests.debug.xcconfig */, 178 | 1CD3FB26E968D9B54D40FE95CFBFA265 /* Pods-GLWalkthrough_Tests.release.xcconfig */, 179 | ); 180 | name = "Pods-GLWalkthrough_Tests"; 181 | path = "Target Support Files/Pods-GLWalkthrough_Tests"; 182 | sourceTree = ""; 183 | }; 184 | B128C02525F517820062DB97 /* Classes */ = { 185 | isa = PBXGroup; 186 | children = ( 187 | B128C03625F532820062DB97 /* GLWalkThroughContentView.swift */, 188 | B128C03525F532820062DB97 /* GLWalkThroughContentView.xib */, 189 | B128C03025F532720062DB97 /* GLWalkThrough.swift */, 190 | ); 191 | path = Classes; 192 | sourceTree = ""; 193 | }; 194 | C71B71E701DD2E32FAA1214FE8B9B6C2 /* Products */ = { 195 | isa = PBXGroup; 196 | children = ( 197 | BA1B212B1F7C4A47EC96FDEDC9F58F96 /* GLWalkthrough.framework */, 198 | A948FE83587698799C3F24582FDE4E13 /* Pods_GLWalkthrough_Example.framework */, 199 | 482ACD5B1D1DA5B6A9065302853FB728 /* Pods_GLWalkthrough_Tests.framework */, 200 | ); 201 | name = Products; 202 | sourceTree = ""; 203 | }; 204 | CBC0A3BE86E9C1F73871172BE9DF6513 /* Pods-GLWalkthrough_Example */ = { 205 | isa = PBXGroup; 206 | children = ( 207 | A920FFD75B8F02BB1E4CF556CE0D1B87 /* Pods-GLWalkthrough_Example.modulemap */, 208 | F59117F77273AC289C353AB63C4EEF0E /* Pods-GLWalkthrough_Example-acknowledgements.markdown */, 209 | 33A02E4FD764477D9CF0871A06FB12AA /* Pods-GLWalkthrough_Example-acknowledgements.plist */, 210 | 47B18004AEBEB07F9459E117156C7578 /* Pods-GLWalkthrough_Example-dummy.m */, 211 | 852B8258E46E710A60689D7718D765D1 /* Pods-GLWalkthrough_Example-frameworks.sh */, 212 | 8EC3DE598B2838235BC40764B3CA278D /* Pods-GLWalkthrough_Example-Info.plist */, 213 | 863B0D91A0A6F35921E816C892B6E088 /* Pods-GLWalkthrough_Example-umbrella.h */, 214 | 71FA2CEBDE355B565836179940A6E558 /* Pods-GLWalkthrough_Example.debug.xcconfig */, 215 | E2255B86D798D2B338C0FCDDD263BFCA /* Pods-GLWalkthrough_Example.release.xcconfig */, 216 | ); 217 | name = "Pods-GLWalkthrough_Example"; 218 | path = "Target Support Files/Pods-GLWalkthrough_Example"; 219 | sourceTree = ""; 220 | }; 221 | CF1408CF629C7361332E53B88F7BD30C = { 222 | isa = PBXGroup; 223 | children = ( 224 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 225 | 0F77AFDB1E3467509743F0D34936A5B0 /* Development Pods */, 226 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 227 | C71B71E701DD2E32FAA1214FE8B9B6C2 /* Products */, 228 | 3BCB992C2E08A42104A668FB0A687A60 /* Targets Support Files */, 229 | ); 230 | sourceTree = ""; 231 | }; 232 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 233 | isa = PBXGroup; 234 | children = ( 235 | 578452D2E740E91742655AC8F1636D1F /* iOS */, 236 | ); 237 | name = Frameworks; 238 | sourceTree = ""; 239 | }; 240 | /* End PBXGroup section */ 241 | 242 | /* Begin PBXHeadersBuildPhase section */ 243 | 7A56E5E29A2C7CA4F47D5EA600119589 /* Headers */ = { 244 | isa = PBXHeadersBuildPhase; 245 | buildActionMask = 2147483647; 246 | files = ( 247 | 4055ADEBE266770B1932B5A9C9B4B07B /* Pods-GLWalkthrough_Example-umbrella.h in Headers */, 248 | ); 249 | runOnlyForDeploymentPostprocessing = 0; 250 | }; 251 | 9ED230C40CCA6D8EFF45C774FADE4587 /* Headers */ = { 252 | isa = PBXHeadersBuildPhase; 253 | buildActionMask = 2147483647; 254 | files = ( 255 | 89C8127AB8646640D9F19A0FB378639F /* Pods-GLWalkthrough_Tests-umbrella.h in Headers */, 256 | ); 257 | runOnlyForDeploymentPostprocessing = 0; 258 | }; 259 | FCADA6F9F75314F1D2677A2E7593680D /* Headers */ = { 260 | isa = PBXHeadersBuildPhase; 261 | buildActionMask = 2147483647; 262 | files = ( 263 | CD01108E82D819AE93B56757A068BFC4 /* GLWalkthrough-umbrella.h in Headers */, 264 | ); 265 | runOnlyForDeploymentPostprocessing = 0; 266 | }; 267 | /* End PBXHeadersBuildPhase section */ 268 | 269 | /* Begin PBXNativeTarget section */ 270 | 12FB0BEF77E94B18DC41DB888937266E /* Pods-GLWalkthrough_Tests */ = { 271 | isa = PBXNativeTarget; 272 | buildConfigurationList = 50D7E8B767D8D15AD9CDFF4C05DFC2BA /* Build configuration list for PBXNativeTarget "Pods-GLWalkthrough_Tests" */; 273 | buildPhases = ( 274 | 9ED230C40CCA6D8EFF45C774FADE4587 /* Headers */, 275 | 5CD1BB8D72FD97E462366B124B396685 /* Sources */, 276 | BF4AA3E6EB118B221C293B0F3968B1F3 /* Frameworks */, 277 | 27B2CD732853FE57EF32AB3C4F493D4D /* Resources */, 278 | ); 279 | buildRules = ( 280 | ); 281 | dependencies = ( 282 | 1C6CC290ECC2719AD62C98AF0BE36612 /* PBXTargetDependency */, 283 | ); 284 | name = "Pods-GLWalkthrough_Tests"; 285 | productName = "Pods-GLWalkthrough_Tests"; 286 | productReference = 482ACD5B1D1DA5B6A9065302853FB728 /* Pods_GLWalkthrough_Tests.framework */; 287 | productType = "com.apple.product-type.framework"; 288 | }; 289 | 2AB02C8508EA6C0CBE2AB3588913369C /* GLWalkthrough */ = { 290 | isa = PBXNativeTarget; 291 | buildConfigurationList = 73C84B5C3A794B16CD5BAD7A67459242 /* Build configuration list for PBXNativeTarget "GLWalkthrough" */; 292 | buildPhases = ( 293 | FCADA6F9F75314F1D2677A2E7593680D /* Headers */, 294 | 470B2C2BBD2456D71852415BEEAAE6BD /* Sources */, 295 | B573B1C1CFCE8526157A9A40F0BF47CD /* Frameworks */, 296 | C73BB53708494207B5F9302498BE6912 /* Resources */, 297 | ); 298 | buildRules = ( 299 | ); 300 | dependencies = ( 301 | ); 302 | name = GLWalkthrough; 303 | productName = GLWalkthrough; 304 | productReference = BA1B212B1F7C4A47EC96FDEDC9F58F96 /* GLWalkthrough.framework */; 305 | productType = "com.apple.product-type.framework"; 306 | }; 307 | 85F3D37031830D39CD679F302C37F12E /* Pods-GLWalkthrough_Example */ = { 308 | isa = PBXNativeTarget; 309 | buildConfigurationList = 05293A8140C9DBB69871B1FE10E33E8A /* Build configuration list for PBXNativeTarget "Pods-GLWalkthrough_Example" */; 310 | buildPhases = ( 311 | 7A56E5E29A2C7CA4F47D5EA600119589 /* Headers */, 312 | 74718F8FBDD97E89FF48CF37E84DC910 /* Sources */, 313 | 5C3D5CD4779ADE9C0BBDA6D04583EF9A /* Frameworks */, 314 | 836D4B99B524886E9E03155369CAD988 /* Resources */, 315 | ); 316 | buildRules = ( 317 | ); 318 | dependencies = ( 319 | 8B1B7785872456F26DE9ADC5576E3577 /* PBXTargetDependency */, 320 | ); 321 | name = "Pods-GLWalkthrough_Example"; 322 | productName = "Pods-GLWalkthrough_Example"; 323 | productReference = A948FE83587698799C3F24582FDE4E13 /* Pods_GLWalkthrough_Example.framework */; 324 | productType = "com.apple.product-type.framework"; 325 | }; 326 | /* End PBXNativeTarget section */ 327 | 328 | /* Begin PBXProject section */ 329 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 330 | isa = PBXProject; 331 | attributes = { 332 | LastSwiftUpdateCheck = 1100; 333 | LastUpgradeCheck = 1100; 334 | }; 335 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 336 | compatibilityVersion = "Xcode 3.2"; 337 | developmentRegion = en; 338 | hasScannedForEncodings = 0; 339 | knownRegions = ( 340 | en, 341 | Base, 342 | ); 343 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 344 | productRefGroup = C71B71E701DD2E32FAA1214FE8B9B6C2 /* Products */; 345 | projectDirPath = ""; 346 | projectRoot = ""; 347 | targets = ( 348 | 2AB02C8508EA6C0CBE2AB3588913369C /* GLWalkthrough */, 349 | 85F3D37031830D39CD679F302C37F12E /* Pods-GLWalkthrough_Example */, 350 | 12FB0BEF77E94B18DC41DB888937266E /* Pods-GLWalkthrough_Tests */, 351 | ); 352 | }; 353 | /* End PBXProject section */ 354 | 355 | /* Begin PBXResourcesBuildPhase section */ 356 | 27B2CD732853FE57EF32AB3C4F493D4D /* Resources */ = { 357 | isa = PBXResourcesBuildPhase; 358 | buildActionMask = 2147483647; 359 | files = ( 360 | ); 361 | runOnlyForDeploymentPostprocessing = 0; 362 | }; 363 | 836D4B99B524886E9E03155369CAD988 /* Resources */ = { 364 | isa = PBXResourcesBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | ); 368 | runOnlyForDeploymentPostprocessing = 0; 369 | }; 370 | C73BB53708494207B5F9302498BE6912 /* Resources */ = { 371 | isa = PBXResourcesBuildPhase; 372 | buildActionMask = 2147483647; 373 | files = ( 374 | B128C03725F532820062DB97 /* GLWalkThroughContentView.xib in Resources */, 375 | ); 376 | runOnlyForDeploymentPostprocessing = 0; 377 | }; 378 | /* End PBXResourcesBuildPhase section */ 379 | 380 | /* Begin PBXSourcesBuildPhase section */ 381 | 470B2C2BBD2456D71852415BEEAAE6BD /* Sources */ = { 382 | isa = PBXSourcesBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | B128C03825F532820062DB97 /* GLWalkThroughContentView.swift in Sources */, 386 | 40E1C495FEE74B850E2D34A93BFA8963 /* GLWalkthrough-dummy.m in Sources */, 387 | B128C03125F532720062DB97 /* GLWalkThrough.swift in Sources */, 388 | ); 389 | runOnlyForDeploymentPostprocessing = 0; 390 | }; 391 | 5CD1BB8D72FD97E462366B124B396685 /* Sources */ = { 392 | isa = PBXSourcesBuildPhase; 393 | buildActionMask = 2147483647; 394 | files = ( 395 | 3362DF3F3FBD3B04F88B7187F306F134 /* Pods-GLWalkthrough_Tests-dummy.m in Sources */, 396 | ); 397 | runOnlyForDeploymentPostprocessing = 0; 398 | }; 399 | 74718F8FBDD97E89FF48CF37E84DC910 /* Sources */ = { 400 | isa = PBXSourcesBuildPhase; 401 | buildActionMask = 2147483647; 402 | files = ( 403 | 9E511C7BA96C157089863BD527B71ED4 /* Pods-GLWalkthrough_Example-dummy.m in Sources */, 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | /* End PBXSourcesBuildPhase section */ 408 | 409 | /* Begin PBXTargetDependency section */ 410 | 1C6CC290ECC2719AD62C98AF0BE36612 /* PBXTargetDependency */ = { 411 | isa = PBXTargetDependency; 412 | name = "Pods-GLWalkthrough_Example"; 413 | target = 85F3D37031830D39CD679F302C37F12E /* Pods-GLWalkthrough_Example */; 414 | targetProxy = B5E0202CDE878FD2EDAEADC44C9CFCC8 /* PBXContainerItemProxy */; 415 | }; 416 | 8B1B7785872456F26DE9ADC5576E3577 /* PBXTargetDependency */ = { 417 | isa = PBXTargetDependency; 418 | name = GLWalkthrough; 419 | target = 2AB02C8508EA6C0CBE2AB3588913369C /* GLWalkthrough */; 420 | targetProxy = 137E4F2F7D3B1C974EA0F8AE6E5E6E56 /* PBXContainerItemProxy */; 421 | }; 422 | /* End PBXTargetDependency section */ 423 | 424 | /* Begin XCBuildConfiguration section */ 425 | 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */ = { 426 | isa = XCBuildConfiguration; 427 | buildSettings = { 428 | ALWAYS_SEARCH_USER_PATHS = NO; 429 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 430 | CLANG_ANALYZER_NONNULL = YES; 431 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 432 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 433 | CLANG_CXX_LIBRARY = "libc++"; 434 | CLANG_ENABLE_MODULES = YES; 435 | CLANG_ENABLE_OBJC_ARC = YES; 436 | CLANG_ENABLE_OBJC_WEAK = YES; 437 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 438 | CLANG_WARN_BOOL_CONVERSION = YES; 439 | CLANG_WARN_COMMA = YES; 440 | CLANG_WARN_CONSTANT_CONVERSION = YES; 441 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 442 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 443 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 444 | CLANG_WARN_EMPTY_BODY = YES; 445 | CLANG_WARN_ENUM_CONVERSION = YES; 446 | CLANG_WARN_INFINITE_RECURSION = YES; 447 | CLANG_WARN_INT_CONVERSION = YES; 448 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 449 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 450 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 451 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 452 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 453 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 454 | CLANG_WARN_STRICT_PROTOTYPES = YES; 455 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 456 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 457 | CLANG_WARN_UNREACHABLE_CODE = YES; 458 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 459 | COPY_PHASE_STRIP = NO; 460 | DEBUG_INFORMATION_FORMAT = dwarf; 461 | ENABLE_STRICT_OBJC_MSGSEND = YES; 462 | ENABLE_TESTABILITY = YES; 463 | GCC_C_LANGUAGE_STANDARD = gnu11; 464 | GCC_DYNAMIC_NO_PIC = NO; 465 | GCC_NO_COMMON_BLOCKS = YES; 466 | GCC_OPTIMIZATION_LEVEL = 0; 467 | GCC_PREPROCESSOR_DEFINITIONS = ( 468 | "POD_CONFIGURATION_DEBUG=1", 469 | "DEBUG=1", 470 | "$(inherited)", 471 | ); 472 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 473 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 474 | GCC_WARN_UNDECLARED_SELECTOR = YES; 475 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 476 | GCC_WARN_UNUSED_FUNCTION = YES; 477 | GCC_WARN_UNUSED_VARIABLE = YES; 478 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 479 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 480 | MTL_FAST_MATH = YES; 481 | ONLY_ACTIVE_ARCH = YES; 482 | PRODUCT_NAME = "$(TARGET_NAME)"; 483 | STRIP_INSTALLED_PRODUCT = NO; 484 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 485 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 486 | SWIFT_VERSION = 5.0; 487 | SYMROOT = "${SRCROOT}/../build"; 488 | }; 489 | name = Debug; 490 | }; 491 | 3D2EF784A0D2E75DE626546F35920A2E /* Release */ = { 492 | isa = XCBuildConfiguration; 493 | baseConfigurationReference = F35F3A97DB7F4602571665A44F4304C5 /* GLWalkthrough.release.xcconfig */; 494 | buildSettings = { 495 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 496 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 497 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 498 | CURRENT_PROJECT_VERSION = 1; 499 | DEFINES_MODULE = YES; 500 | DYLIB_COMPATIBILITY_VERSION = 1; 501 | DYLIB_CURRENT_VERSION = 1; 502 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 503 | GCC_PREFIX_HEADER = "Target Support Files/GLWalkthrough/GLWalkthrough-prefix.pch"; 504 | INFOPLIST_FILE = "Target Support Files/GLWalkthrough/GLWalkthrough-Info.plist"; 505 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 506 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 507 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 508 | MODULEMAP_FILE = "Target Support Files/GLWalkthrough/GLWalkthrough.modulemap"; 509 | PRODUCT_MODULE_NAME = GLWalkthrough; 510 | PRODUCT_NAME = GLWalkthrough; 511 | SDKROOT = iphoneos; 512 | SKIP_INSTALL = YES; 513 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 514 | SWIFT_VERSION = 4.0; 515 | TARGETED_DEVICE_FAMILY = "1,2"; 516 | VALIDATE_PRODUCT = YES; 517 | VERSIONING_SYSTEM = "apple-generic"; 518 | VERSION_INFO_PREFIX = ""; 519 | }; 520 | name = Release; 521 | }; 522 | 7426D86ACC0B47F96FB1D5C5CD8AD3A9 /* Debug */ = { 523 | isa = XCBuildConfiguration; 524 | baseConfigurationReference = 786EA3CA8E3F9754B615BCD72CBD2026 /* Pods-GLWalkthrough_Tests.debug.xcconfig */; 525 | buildSettings = { 526 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 527 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 528 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 529 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 530 | CURRENT_PROJECT_VERSION = 1; 531 | DEFINES_MODULE = YES; 532 | DYLIB_COMPATIBILITY_VERSION = 1; 533 | DYLIB_CURRENT_VERSION = 1; 534 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 535 | INFOPLIST_FILE = "Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests-Info.plist"; 536 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 537 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 538 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 539 | MACH_O_TYPE = staticlib; 540 | MODULEMAP_FILE = "Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests.modulemap"; 541 | OTHER_LDFLAGS = ""; 542 | OTHER_LIBTOOLFLAGS = ""; 543 | PODS_ROOT = "$(SRCROOT)"; 544 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 545 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 546 | SDKROOT = iphoneos; 547 | SKIP_INSTALL = YES; 548 | TARGETED_DEVICE_FAMILY = "1,2"; 549 | VERSIONING_SYSTEM = "apple-generic"; 550 | VERSION_INFO_PREFIX = ""; 551 | }; 552 | name = Debug; 553 | }; 554 | 79F2CA5F1F32E8BFF37651A92606BEB5 /* Debug */ = { 555 | isa = XCBuildConfiguration; 556 | baseConfigurationReference = 71FA2CEBDE355B565836179940A6E558 /* Pods-GLWalkthrough_Example.debug.xcconfig */; 557 | buildSettings = { 558 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 559 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 560 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 561 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 562 | CURRENT_PROJECT_VERSION = 1; 563 | DEFINES_MODULE = YES; 564 | DYLIB_COMPATIBILITY_VERSION = 1; 565 | DYLIB_CURRENT_VERSION = 1; 566 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 567 | INFOPLIST_FILE = "Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-Info.plist"; 568 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 569 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 570 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 571 | MACH_O_TYPE = staticlib; 572 | MODULEMAP_FILE = "Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example.modulemap"; 573 | OTHER_LDFLAGS = ""; 574 | OTHER_LIBTOOLFLAGS = ""; 575 | PODS_ROOT = "$(SRCROOT)"; 576 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 577 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 578 | SDKROOT = iphoneos; 579 | SKIP_INSTALL = YES; 580 | TARGETED_DEVICE_FAMILY = "1,2"; 581 | VERSIONING_SYSTEM = "apple-generic"; 582 | VERSION_INFO_PREFIX = ""; 583 | }; 584 | name = Debug; 585 | }; 586 | 8FD026D40B4003C0F4627FA5689A0D50 /* Release */ = { 587 | isa = XCBuildConfiguration; 588 | baseConfigurationReference = 1CD3FB26E968D9B54D40FE95CFBFA265 /* Pods-GLWalkthrough_Tests.release.xcconfig */; 589 | buildSettings = { 590 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 591 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 592 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 593 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 594 | CURRENT_PROJECT_VERSION = 1; 595 | DEFINES_MODULE = YES; 596 | DYLIB_COMPATIBILITY_VERSION = 1; 597 | DYLIB_CURRENT_VERSION = 1; 598 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 599 | INFOPLIST_FILE = "Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests-Info.plist"; 600 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 601 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 602 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 603 | MACH_O_TYPE = staticlib; 604 | MODULEMAP_FILE = "Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests.modulemap"; 605 | OTHER_LDFLAGS = ""; 606 | OTHER_LIBTOOLFLAGS = ""; 607 | PODS_ROOT = "$(SRCROOT)"; 608 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 609 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 610 | SDKROOT = iphoneos; 611 | SKIP_INSTALL = YES; 612 | TARGETED_DEVICE_FAMILY = "1,2"; 613 | VALIDATE_PRODUCT = YES; 614 | VERSIONING_SYSTEM = "apple-generic"; 615 | VERSION_INFO_PREFIX = ""; 616 | }; 617 | name = Release; 618 | }; 619 | A3FCAE9F46CCDD68E24C1A96CFA972FA /* Release */ = { 620 | isa = XCBuildConfiguration; 621 | baseConfigurationReference = E2255B86D798D2B338C0FCDDD263BFCA /* Pods-GLWalkthrough_Example.release.xcconfig */; 622 | buildSettings = { 623 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 624 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 625 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 626 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 627 | CURRENT_PROJECT_VERSION = 1; 628 | DEFINES_MODULE = YES; 629 | DYLIB_COMPATIBILITY_VERSION = 1; 630 | DYLIB_CURRENT_VERSION = 1; 631 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 632 | INFOPLIST_FILE = "Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-Info.plist"; 633 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 634 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 635 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 636 | MACH_O_TYPE = staticlib; 637 | MODULEMAP_FILE = "Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example.modulemap"; 638 | OTHER_LDFLAGS = ""; 639 | OTHER_LIBTOOLFLAGS = ""; 640 | PODS_ROOT = "$(SRCROOT)"; 641 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 642 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 643 | SDKROOT = iphoneos; 644 | SKIP_INSTALL = YES; 645 | TARGETED_DEVICE_FAMILY = "1,2"; 646 | VALIDATE_PRODUCT = YES; 647 | VERSIONING_SYSTEM = "apple-generic"; 648 | VERSION_INFO_PREFIX = ""; 649 | }; 650 | name = Release; 651 | }; 652 | CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */ = { 653 | isa = XCBuildConfiguration; 654 | buildSettings = { 655 | ALWAYS_SEARCH_USER_PATHS = NO; 656 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 657 | CLANG_ANALYZER_NONNULL = YES; 658 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 659 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 660 | CLANG_CXX_LIBRARY = "libc++"; 661 | CLANG_ENABLE_MODULES = YES; 662 | CLANG_ENABLE_OBJC_ARC = YES; 663 | CLANG_ENABLE_OBJC_WEAK = YES; 664 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 665 | CLANG_WARN_BOOL_CONVERSION = YES; 666 | CLANG_WARN_COMMA = YES; 667 | CLANG_WARN_CONSTANT_CONVERSION = YES; 668 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 669 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 670 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 671 | CLANG_WARN_EMPTY_BODY = YES; 672 | CLANG_WARN_ENUM_CONVERSION = YES; 673 | CLANG_WARN_INFINITE_RECURSION = YES; 674 | CLANG_WARN_INT_CONVERSION = YES; 675 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 676 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 677 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 678 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 679 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 680 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 681 | CLANG_WARN_STRICT_PROTOTYPES = YES; 682 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 683 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 684 | CLANG_WARN_UNREACHABLE_CODE = YES; 685 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 686 | COPY_PHASE_STRIP = NO; 687 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 688 | ENABLE_NS_ASSERTIONS = NO; 689 | ENABLE_STRICT_OBJC_MSGSEND = YES; 690 | GCC_C_LANGUAGE_STANDARD = gnu11; 691 | GCC_NO_COMMON_BLOCKS = YES; 692 | GCC_PREPROCESSOR_DEFINITIONS = ( 693 | "POD_CONFIGURATION_RELEASE=1", 694 | "$(inherited)", 695 | ); 696 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 697 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 698 | GCC_WARN_UNDECLARED_SELECTOR = YES; 699 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 700 | GCC_WARN_UNUSED_FUNCTION = YES; 701 | GCC_WARN_UNUSED_VARIABLE = YES; 702 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 703 | MTL_ENABLE_DEBUG_INFO = NO; 704 | MTL_FAST_MATH = YES; 705 | PRODUCT_NAME = "$(TARGET_NAME)"; 706 | STRIP_INSTALLED_PRODUCT = NO; 707 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 708 | SWIFT_VERSION = 5.0; 709 | SYMROOT = "${SRCROOT}/../build"; 710 | }; 711 | name = Release; 712 | }; 713 | E6EC396A60B5753A1140A68DFD59F486 /* Debug */ = { 714 | isa = XCBuildConfiguration; 715 | baseConfigurationReference = B9CA3DE6202E721B851A63895B455EF7 /* GLWalkthrough.debug.xcconfig */; 716 | buildSettings = { 717 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 718 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 719 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 720 | CURRENT_PROJECT_VERSION = 1; 721 | DEFINES_MODULE = YES; 722 | DYLIB_COMPATIBILITY_VERSION = 1; 723 | DYLIB_CURRENT_VERSION = 1; 724 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 725 | GCC_PREFIX_HEADER = "Target Support Files/GLWalkthrough/GLWalkthrough-prefix.pch"; 726 | INFOPLIST_FILE = "Target Support Files/GLWalkthrough/GLWalkthrough-Info.plist"; 727 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 728 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 729 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 730 | MODULEMAP_FILE = "Target Support Files/GLWalkthrough/GLWalkthrough.modulemap"; 731 | PRODUCT_MODULE_NAME = GLWalkthrough; 732 | PRODUCT_NAME = GLWalkthrough; 733 | SDKROOT = iphoneos; 734 | SKIP_INSTALL = YES; 735 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 736 | SWIFT_VERSION = 4.0; 737 | TARGETED_DEVICE_FAMILY = "1,2"; 738 | VERSIONING_SYSTEM = "apple-generic"; 739 | VERSION_INFO_PREFIX = ""; 740 | }; 741 | name = Debug; 742 | }; 743 | /* End XCBuildConfiguration section */ 744 | 745 | /* Begin XCConfigurationList section */ 746 | 05293A8140C9DBB69871B1FE10E33E8A /* Build configuration list for PBXNativeTarget "Pods-GLWalkthrough_Example" */ = { 747 | isa = XCConfigurationList; 748 | buildConfigurations = ( 749 | 79F2CA5F1F32E8BFF37651A92606BEB5 /* Debug */, 750 | A3FCAE9F46CCDD68E24C1A96CFA972FA /* Release */, 751 | ); 752 | defaultConfigurationIsVisible = 0; 753 | defaultConfigurationName = Release; 754 | }; 755 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 756 | isa = XCConfigurationList; 757 | buildConfigurations = ( 758 | 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */, 759 | CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */, 760 | ); 761 | defaultConfigurationIsVisible = 0; 762 | defaultConfigurationName = Release; 763 | }; 764 | 50D7E8B767D8D15AD9CDFF4C05DFC2BA /* Build configuration list for PBXNativeTarget "Pods-GLWalkthrough_Tests" */ = { 765 | isa = XCConfigurationList; 766 | buildConfigurations = ( 767 | 7426D86ACC0B47F96FB1D5C5CD8AD3A9 /* Debug */, 768 | 8FD026D40B4003C0F4627FA5689A0D50 /* Release */, 769 | ); 770 | defaultConfigurationIsVisible = 0; 771 | defaultConfigurationName = Release; 772 | }; 773 | 73C84B5C3A794B16CD5BAD7A67459242 /* Build configuration list for PBXNativeTarget "GLWalkthrough" */ = { 774 | isa = XCConfigurationList; 775 | buildConfigurations = ( 776 | E6EC396A60B5753A1140A68DFD59F486 /* Debug */, 777 | 3D2EF784A0D2E75DE626546F35920A2E /* Release */, 778 | ); 779 | defaultConfigurationIsVisible = 0; 780 | defaultConfigurationName = Release; 781 | }; 782 | /* End XCConfigurationList section */ 783 | }; 784 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 785 | } 786 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLWalkthrough/GLWalkthrough-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLWalkthrough/GLWalkthrough-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GLWalkthrough : NSObject 3 | @end 4 | @implementation PodsDummy_GLWalkthrough 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLWalkthrough/GLWalkthrough-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLWalkthrough/GLWalkthrough-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double GLWalkthroughVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char GLWalkthroughVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLWalkthrough/GLWalkthrough.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLWalkthrough/GLWalkthrough.modulemap: -------------------------------------------------------------------------------- 1 | framework module GLWalkthrough { 2 | umbrella header "GLWalkthrough-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLWalkthrough/GLWalkthrough.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## GLWalkthrough 5 | 6 | Copyright (c) 2021 gokulgovind 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2021 gokulgovind <gokul.g@payoda.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | GLWalkthrough 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_GLWalkthrough_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_GLWalkthrough_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | BCSYMBOLMAP_DIR="BCSymbolMaps" 23 | 24 | 25 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 26 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 27 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 28 | 29 | # Copies and strips a vendored framework 30 | install_framework() 31 | { 32 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 33 | local source="${BUILT_PRODUCTS_DIR}/$1" 34 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 35 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 36 | elif [ -r "$1" ]; then 37 | local source="$1" 38 | fi 39 | 40 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 41 | 42 | if [ -L "${source}" ]; then 43 | echo "Symlinked..." 44 | source="$(readlink "${source}")" 45 | fi 46 | 47 | if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then 48 | # Locate and install any .bcsymbolmaps if present, and remove them from the .framework before the framework is copied 49 | find "${source}/${BCSYMBOLMAP_DIR}" -name "*.bcsymbolmap"|while read f; do 50 | echo "Installing $f" 51 | install_bcsymbolmap "$f" "$destination" 52 | rm "$f" 53 | done 54 | rmdir "${source}/${BCSYMBOLMAP_DIR}" 55 | fi 56 | 57 | # Use filter instead of exclude so missing patterns don't throw errors. 58 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 59 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 60 | 61 | local basename 62 | basename="$(basename -s .framework "$1")" 63 | binary="${destination}/${basename}.framework/${basename}" 64 | 65 | if ! [ -r "$binary" ]; then 66 | binary="${destination}/${basename}" 67 | elif [ -L "${binary}" ]; then 68 | echo "Destination binary is symlinked..." 69 | dirname="$(dirname "${binary}")" 70 | binary="${dirname}/$(readlink "${binary}")" 71 | fi 72 | 73 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 74 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 75 | strip_invalid_archs "$binary" 76 | fi 77 | 78 | # Resign the code if required by the build settings to avoid unstable apps 79 | code_sign_if_enabled "${destination}/$(basename "$1")" 80 | 81 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 82 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 83 | local swift_runtime_libs 84 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 85 | for lib in $swift_runtime_libs; do 86 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 87 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 88 | code_sign_if_enabled "${destination}/${lib}" 89 | done 90 | fi 91 | } 92 | # Copies and strips a vendored dSYM 93 | install_dsym() { 94 | local source="$1" 95 | warn_missing_arch=${2:-true} 96 | if [ -r "$source" ]; then 97 | # Copy the dSYM into the targets temp dir. 98 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 99 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 100 | 101 | local basename 102 | basename="$(basename -s .dSYM "$source")" 103 | binary_name="$(ls "$source/Contents/Resources/DWARF")" 104 | binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" 105 | 106 | # Strip invalid architectures from the dSYM. 107 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 108 | strip_invalid_archs "$binary" "$warn_missing_arch" 109 | fi 110 | if [[ $STRIP_BINARY_RETVAL == 0 ]]; then 111 | # Move the stripped file into its final destination. 112 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 113 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 114 | else 115 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 116 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" 117 | fi 118 | fi 119 | } 120 | 121 | # Used as a return value for each invocation of `strip_invalid_archs` function. 122 | STRIP_BINARY_RETVAL=0 123 | 124 | # Strip invalid architectures 125 | strip_invalid_archs() { 126 | binary="$1" 127 | warn_missing_arch=${2:-true} 128 | # Get architectures for current target binary 129 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 130 | # Intersect them with the architectures we are building for 131 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 132 | # If there are no archs supported by this binary then warn the user 133 | if [[ -z "$intersected_archs" ]]; then 134 | if [[ "$warn_missing_arch" == "true" ]]; then 135 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 136 | fi 137 | STRIP_BINARY_RETVAL=1 138 | return 139 | fi 140 | stripped="" 141 | for arch in $binary_archs; do 142 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 143 | # Strip non-valid architectures in-place 144 | lipo -remove "$arch" -output "$binary" "$binary" 145 | stripped="$stripped $arch" 146 | fi 147 | done 148 | if [[ "$stripped" ]]; then 149 | echo "Stripped $binary of architectures:$stripped" 150 | fi 151 | STRIP_BINARY_RETVAL=0 152 | } 153 | 154 | # Copies the bcsymbolmap files of a vendored framework 155 | install_bcsymbolmap() { 156 | local bcsymbolmap_path="$1" 157 | local destination="${BUILT_PRODUCTS_DIR}" 158 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" 159 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 160 | } 161 | 162 | # Signs a framework with the provided identity 163 | code_sign_if_enabled() { 164 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 165 | # Use the current code_sign_identity 166 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 167 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 168 | 169 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 170 | code_sign_cmd="$code_sign_cmd &" 171 | fi 172 | echo "$code_sign_cmd" 173 | eval "$code_sign_cmd" 174 | fi 175 | } 176 | 177 | if [[ "$CONFIGURATION" == "Debug" ]]; then 178 | install_framework "${BUILT_PRODUCTS_DIR}/GLWalkthrough/GLWalkthrough.framework" 179 | fi 180 | if [[ "$CONFIGURATION" == "Release" ]]; then 181 | install_framework "${BUILT_PRODUCTS_DIR}/GLWalkthrough/GLWalkthrough.framework" 182 | fi 183 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 184 | wait 185 | fi 186 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_GLWalkthrough_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_GLWalkthrough_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough/GLWalkthrough.framework/Headers" 6 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 7 | OTHER_LDFLAGS = $(inherited) -framework "GLWalkthrough" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 14 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_GLWalkthrough_Example { 2 | umbrella header "Pods-GLWalkthrough_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Example/Pods-GLWalkthrough_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough/GLWalkthrough.framework/Headers" 6 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 7 | OTHER_LDFLAGS = $(inherited) -framework "GLWalkthrough" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 14 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_GLWalkthrough_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_GLWalkthrough_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_GLWalkthrough_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_GLWalkthrough_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough/GLWalkthrough.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "GLWalkthrough" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_GLWalkthrough_Tests { 2 | umbrella header "Pods-GLWalkthrough_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLWalkthrough_Tests/Pods-GLWalkthrough_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GLWalkthrough/GLWalkthrough.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "GLWalkthrough" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import GLWalkthrough 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /GLWalkthrough.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint GLWalkthrough.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'GLWalkthrough' 11 | s.version = '0.1.1' 12 | s.summary = 'GLWalkthrough helps users to add walk through or coach marker functionality to their application' 13 | s.swift_version = '4.0' 14 | 15 | 16 | # This description is used to generate tags and improve search results. 17 | # * Think: What does it do? Why did you write it? What is the focus? 18 | # * Try to keep it short, snappy and to the point. 19 | # * Write the description between the DESC delimiters below. 20 | # * Finally, don't worry about the indent, CocoaPods strips it! 21 | 22 | s.description = <<-DESC 23 | GLWalkthrough is a easily configurable plug and play tool to add walkthrough or coachmarker functionality to your app in ease. 24 | DESC 25 | 26 | s.homepage = 'https://github.com/gokulgovind/GLWalkthrough' 27 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 28 | s.license = { :type => 'MIT', :file => 'LICENSE' } 29 | s.author = { 'gokulgovind' => 'gokulece26@gmail.com' } 30 | s.source = { :git => 'https://github.com/gokulgovind/GLWalkthrough.git', :tag => s.version.to_s } 31 | # s.social_media_url = 'https://twitter.com/' 32 | 33 | s.ios.deployment_target = '9.0' 34 | 35 | s.source_files = 'GLWalkthrough/Classes/**/*' 36 | 37 | # s.resource_bundles = { 38 | # 'GLWalkthrough' => ['GLWalkthrough/Assets/*.png'] 39 | # } 40 | 41 | # s.public_header_files = 'Pod/Classes/**/*.h' 42 | # s.frameworks = 'UIKit', 'MapKit' 43 | # s.dependency 'AFNetworking', '~> 2.3' 44 | end 45 | -------------------------------------------------------------------------------- /GLWalkthrough/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/GLWalkthrough/Assets/.gitkeep -------------------------------------------------------------------------------- /GLWalkthrough/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLWalkthrough/e226e317c6713a058d4dc52662c87f36dfc88de8/GLWalkthrough/Classes/.gitkeep -------------------------------------------------------------------------------- /GLWalkthrough/Classes/GLWalkThrough.swift: -------------------------------------------------------------------------------- 1 | // 2 | // GLWalkThrough.swift 3 | // Protalk 4 | // 5 | // Created by Gokul on 30/08/20. 6 | // Copyright © 2020 Possibilty. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public protocol GLWalkThroughDataSource { 12 | func numberOfItems() -> Int 13 | func configForItemAtIndex(index:Int) -> GLWalkThroughConfig 14 | } 15 | 16 | public protocol GLWalkThroughDelegate { 17 | func didSelectNextAtIndex(index:Int) 18 | func didSelectSkip(index:Int) 19 | } 20 | 21 | open class GLWalkThrough: NSObject { 22 | private let window = UIApplication.shared.keyWindow 23 | private let windowFrame:CGRect = UIApplication.shared.keyWindow?.bounds ?? CGRect(x: 0, y: 0, width: 320, height: 568) 24 | 25 | private let deviceHeight = UIApplication.shared.keyWindow?.bounds.height 26 | 27 | // MARK: -- Var 28 | public var dataSource:GLWalkThroughDataSource! 29 | public var delegate:GLWalkThroughDelegate! 30 | public var isShowSkipButton:Bool = true 31 | public var skipButtonTitle = "Skip" 32 | fileprivate var currentConfig:GLWalkThroughConfig? 33 | fileprivate var fillLayer:CAShapeLayer? 34 | 35 | /// Parent view of GLWalkThrough 36 | fileprivate lazy var skipButton:UIButton = { 37 | let skip = UIButton() 38 | skip.addTarget(self, action: #selector(onTapSkip), for: .touchUpInside) 39 | skip.layer.cornerRadius = 8 40 | skip.layer.borderWidth = 1 41 | skip.layer.borderColor = UIColor.white.cgColor 42 | skip.setTitle(skipButtonTitle, for: .normal) 43 | return skip 44 | }() 45 | 46 | fileprivate lazy var containerView:UIView = { 47 | let view = UIView(frame: windowFrame) 48 | view.backgroundColor = .clear 49 | if isShowSkipButton { 50 | view.addSubview(skipButton) 51 | } 52 | return view 53 | }() 54 | 55 | /// View which holds title subtitle and next button 56 | fileprivate lazy var contentView:GLWalkThroughContentView = { 57 | let view:GLWalkThroughContentView = .fromNib() 58 | guard let frame = currentConfig?.frameOverWindow else {return view} 59 | view.frame = CGRect(x: 0, y: frame.origin.y - 175, width: containerView.frame.size.width, height: 175) 60 | view.backgroundColor = .clear 61 | return view 62 | }() 63 | fileprivate var currentIndex = 0 64 | fileprivate var numberOfItems:Int = 0 65 | 66 | // MARK: - Init 67 | public func show() { 68 | guard let window = window else {return} 69 | window.addSubview(containerView) 70 | DispatchQueue.main.asyncAfter(deadline: .now() + 1) { 71 | window.bringSubview(toFront: self.containerView) 72 | } 73 | setupVFLForSkipButton() 74 | containerView.bringSubview(toFront: skipButton) 75 | getDataSource() 76 | contentView.onTapNext = { 77 | self.onTapNext() 78 | } 79 | 80 | // let tap = UITapGestureRecognizer(target: self, action: #selector(onTapNext)) 81 | // contentView.addGestureRecognizer(tap) 82 | } 83 | 84 | public func dismiss() { 85 | containerView.removeFromSuperview() 86 | } 87 | 88 | 89 | // MARK: - DataSource 90 | func getDataSource() { 91 | numberOfItems = dataSource?.numberOfItems() ?? 0 92 | getConfigForItemAt(index: 0) 93 | } 94 | 95 | func getConfigForItemAt(index:Int) { 96 | guard let config = dataSource?.configForItemAtIndex(index: index), let frame = config.frameOverWindow else {return} 97 | currentConfig = config 98 | currentIndex = index 99 | reloadUI() 100 | drawOverlay(myRect: frame) 101 | } 102 | 103 | // MARK: - Actions 104 | @objc func onTapNext() { 105 | let nextIndex = currentIndex + 1 106 | if nextIndex <= numberOfItems { 107 | delegate?.didSelectNextAtIndex(index: nextIndex) 108 | getConfigForItemAt(index: nextIndex) 109 | } 110 | } 111 | @objc func onTapSkip() { 112 | delegate?.didSelectSkip(index: currentIndex) 113 | } 114 | 115 | // MARK: - Draw Layer and UI 116 | private func reloadUI() { 117 | 118 | if currentIndex == 0 { 119 | containerView.addSubview(contentView) 120 | } 121 | 122 | contentView.titleLabel.text = currentConfig?.title 123 | contentView.subTitleLabel.text = currentConfig?.subtitle 124 | contentView.nextButton.setTitle(" \(currentConfig?.nextBtnTitle ?? "Next") ", for: .normal) 125 | 126 | if let position = currentConfig?.position, let frame = currentConfig?.frameOverWindow { 127 | // Set y position depending on top or bottom 128 | if let frame = currentConfig?.frameOverWindow { 129 | if let isBottom = currentConfig?.isInBottom, isBottom { 130 | contentView.frame.origin.y = frame.origin.y - contentView.frame.size.height 131 | }else{ 132 | contentView.frame.origin.y = frame.origin.y + frame.height + 10 133 | } 134 | 135 | } 136 | switch position { 137 | 138 | case .bottomLeft, .topLeft: 139 | let xAxis = frame.origin.x + (frame.size.width/2) 140 | contentView.leadingConstraint.constant = xAxis 141 | contentView.trailingConstraint.constant = 0 142 | 143 | contentView.leadingVerticleLine.isHidden = false 144 | contentView.trailingVerticleLine.isHidden = true 145 | 146 | contentView.titleLabel.textAlignment = .left 147 | contentView.subTitleLabel.textAlignment = .left 148 | 149 | contentView.nextButtonStack.alignment = .leading 150 | case .bottomRight, .topRight: 151 | let xAxis = (containerView.frame.size.width - frame.origin.x) - (frame.size.width/2) 152 | contentView.trailingConstraint.constant = xAxis 153 | contentView.leadingConstraint.constant = 0 154 | contentView.titleLabel.textAlignment = .right 155 | contentView.subTitleLabel.textAlignment = .right 156 | contentView.trailingVerticleLine.isHidden = false 157 | contentView.leadingVerticleLine.isHidden = true 158 | 159 | contentView.nextButtonStack.alignment = .trailing 160 | case .bottomCenter, .topCenter: 161 | contentView.trailingConstraint.constant = 0 162 | contentView.leadingConstraint.constant = 0 163 | 164 | contentView.trailingVerticleLine.isHidden = true 165 | contentView.leadingVerticleLine.isHidden = true 166 | 167 | contentView.titleLabel.textAlignment = .center 168 | contentView.subTitleLabel.textAlignment = .center 169 | 170 | contentView.nextButtonStack.alignment = .center 171 | } 172 | } 173 | setupVFLForSkipButton() 174 | } 175 | 176 | fileprivate func setupVFLForSkipButton() { 177 | skipButton.translatesAutoresizingMaskIntoConstraints = false 178 | let horizontal = NSLayoutConstraint.constraints(withVisualFormat: "H:[skip(>=70)]-30-|", options: NSLayoutConstraint.FormatOptions(), metrics: nil, views: ["skip":skipButton]) 179 | if let isBottom = currentConfig?.isInBottom, isBottom { 180 | let verticle = NSLayoutConstraint.constraints(withVisualFormat: "V:|-55-[skip(35)]", options: NSLayoutConstraint.FormatOptions(), metrics: nil, views: ["skip":skipButton]) 181 | containerView.addConstraints(verticle) 182 | }else{ 183 | let verticle = NSLayoutConstraint.constraints(withVisualFormat: "V:[skip(35)]-55-|", options: NSLayoutConstraint.FormatOptions(), metrics: nil, views: ["skip":skipButton]) 184 | containerView.addConstraints(verticle) 185 | } 186 | 187 | containerView.addConstraints(horizontal) 188 | 189 | } 190 | 191 | private func drawOverlay(myRect:CGRect) { 192 | if fillLayer != nil { 193 | fillLayer?.removeFromSuperlayer() 194 | fillLayer = nil 195 | } 196 | let radius: CGFloat = myRect.size.width 197 | let path = UIBezierPath(roundedRect: CGRect(x: 0, y: 0, width: containerView.bounds.size.width, height: containerView.bounds.size.height), cornerRadius: 0) 198 | let circlePath = UIBezierPath(roundedRect: myRect, cornerRadius: radius) 199 | path.append(circlePath) 200 | path.usesEvenOddFillRule = true 201 | 202 | fillLayer = CAShapeLayer() 203 | fillLayer?.path = path.cgPath 204 | fillLayer?.fillRule = kCAFillRuleEvenOdd 205 | fillLayer?.fillColor = UIColor.black.cgColor 206 | fillLayer?.opacity = 0.8 207 | containerView.layer.insertSublayer(fillLayer!, below: skipButton.layer) 208 | } 209 | } 210 | 211 | // MARK: - 212 | public struct GLWalkThroughConfig { 213 | public init() { 214 | 215 | } 216 | public enum GLPosition { 217 | case bottomLeft 218 | case bottomRight 219 | case bottomCenter 220 | case topLeft 221 | case topRight 222 | case topCenter 223 | } 224 | public var frameOverWindow:CGRect! 225 | public var title:String? 226 | public var subtitle:String? 227 | public var nextBtnTitle:String = "Next" 228 | public var isSkipEnabled:Bool = true 229 | public var tapToNext:Bool = true 230 | public var position:GLPosition = .bottomLeft 231 | var isInBottom:Bool { 232 | return position == .bottomCenter || position == .bottomLeft || position == .bottomRight 233 | } 234 | 235 | } 236 | 237 | extension UIView { 238 | class func fromNib() -> T { 239 | return Bundle(for: GLWalkThroughContentView.self) 240 | .loadNibNamed("GLWalkThroughContentView", owner:self, options:nil)![0] as! T 241 | } 242 | } 243 | -------------------------------------------------------------------------------- /GLWalkthrough/Classes/GLWalkThroughContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // GLWalkThroughContentView.swift 3 | // Protalk 4 | // 5 | // Created by Vijay on 08/12/20. 6 | // Copyright © 2020 Possibilty. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class GLWalkThroughContentView: UIView { 12 | 13 | @IBOutlet weak var titleLabel:UILabel! 14 | @IBOutlet weak var subTitleLabel:UILabel! 15 | @IBOutlet weak var leadingVerticleLine:UIView! 16 | @IBOutlet weak var trailingVerticleLine:UIView! 17 | @IBOutlet weak var nextButton:UIButton! 18 | @IBOutlet weak var nextButtonStack:UIStackView! 19 | 20 | 21 | @IBOutlet weak var leadingConstraint:NSLayoutConstraint! 22 | @IBOutlet weak var trailingConstraint:NSLayoutConstraint! 23 | 24 | var onTapNext:(()->())? 25 | override func awakeFromNib() { 26 | super.awakeFromNib() 27 | nextButton.layer.cornerRadius = 5 28 | nextButton.layer.borderColor = UIColor.white.cgColor 29 | nextButton.layer.borderWidth = 1.0 30 | } 31 | 32 | @IBAction func onTapNext(_ sender: UIButton) { 33 | onTapNext?() 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /GLWalkthrough/Classes/GLWalkThroughContentView.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | CerebriSans-Medium 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 31 | 37 | 38 | 39 | 40 | 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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2021 gokulgovind 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GLWalkthrough 2 | 3 | [![CI Status](https://img.shields.io/travis/gokulgovind/GLWalkthrough.svg?style=flat)](https://travis-ci.org/gokulgovind/GLWalkthrough) 4 | [![Version](https://img.shields.io/cocoapods/v/GLWalkthrough.svg?style=flat)](https://cocoapods.org/pods/GLWalkthrough) 5 | [![License](https://img.shields.io/cocoapods/l/GLWalkthrough.svg?style=flat)](https://cocoapods.org/pods/GLWalkthrough) 6 | [![Platform](https://img.shields.io/cocoapods/p/GLWalkthrough.svg?style=flat)](https://cocoapods.org/pods/GLWalkthrough) 7 | 8 | ## Example 9 | 10 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 11 | 12 | ## Requirements 13 | 14 | ## Installation 15 | 16 | GLWalkthrough is available through [CocoaPods](https://cocoapods.org). To install 17 | it, simply add the following line to your Podfile: 18 | 19 | ```ruby 20 | pod 'GLWalkthrough' 21 | ``` 22 | ### Preview 23 | 24 | 25 | 26 | 27 | ### Public Attribute 28 | | Attribute name | Specific introduction of attributes | 29 | | :------------: | :------------: | 30 | | `title` | titile to be shown on each object | 31 | | `subtitle` | subtitle to be shown on each object | 32 | | `nextBtnTitle` | button title for next button. (default text is "Next") | 33 | | `isSkipEnabled` | bool to enable/disable skip button (applies to each individual object) | 34 | | `position` | specify the position of object to be highlighted (like bottomLeft, bottomCenter, topRight) | 35 | | `frameOverWindow` | CGRect of object to be highlighted | 36 | 37 | 38 | ### DataSources 39 | | Attribute name | Specific introduction of attributes | 40 | | :------------: | :------------: | 41 | | `func numberOfItems() -> Int` | gets number of UI object to be highlighted | 42 | | `func configForItemAtIndex(index:Int) -> GLWalkThroughConfig` | Provide detail info of object to be highlighted in form of GLWalkThroughConfig | 43 | 44 | 45 | ### Delegates 46 | | Attribute name | Specific introduction of attributes | 47 | | :------------: | :------------: | 48 | | `func didSelectNextAtIndex(index:Int)` | triggered on tap of next button | 49 | | `func didSelectSkip(index:Int)` | triggered when user taps skip | 50 | 51 | ### Sample 52 | `Init` 53 | ```let coachMarker = GLWalkThrough() 54 | coachMarker.dataSource = self 55 | coachMarker.delegate = self 56 | coachMarker.show() 57 | ``` 58 | `Datasource` 59 | ``` 60 | extension ViewController: GLWalkThroughDataSource { 61 | 62 | func numberOfItems() -> Int { 63 | return 1 64 | } 65 | 66 | func configForItemAtIndex(index: Int) -> GLWalkThroughConfig { 67 | switch index { 68 | case 0: 69 | var config = GLWalkThroughConfig() 70 | config.title = "Home Screen" 71 | config.subtitle = "Here you can explore Services, Articles, plans" 72 | config.frameOverWindow = CGRect(x: 50, y: 50, width: 100, height: 100) 73 | config.position = .topLeft 74 | return config 75 | default: 76 | return GLWalkThroughConfig() 77 | } 78 | } 79 | } 80 | ``` 81 | ## Author 82 | 83 | gokulgovind, gokulece26@gmail.com 84 | 85 | ## License 86 | 87 | GLWalkthrough is available under the MIT license. See the LICENSE file for more info. 88 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------