├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── TanibleView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-TanibleView_Example │ │ ├── Info.plist │ │ ├── Pods-TanibleView_Example-acknowledgements.markdown │ │ ├── Pods-TanibleView_Example-acknowledgements.plist │ │ ├── Pods-TanibleView_Example-dummy.m │ │ ├── Pods-TanibleView_Example-frameworks.sh │ │ ├── Pods-TanibleView_Example-resources.sh │ │ ├── Pods-TanibleView_Example-umbrella.h │ │ ├── Pods-TanibleView_Example.debug.xcconfig │ │ ├── Pods-TanibleView_Example.modulemap │ │ └── Pods-TanibleView_Example.release.xcconfig │ │ ├── Pods-TanibleView_Tests │ │ ├── Info.plist │ │ ├── Pods-TanibleView_Tests-acknowledgements.markdown │ │ ├── Pods-TanibleView_Tests-acknowledgements.plist │ │ ├── Pods-TanibleView_Tests-dummy.m │ │ ├── Pods-TanibleView_Tests-frameworks.sh │ │ ├── Pods-TanibleView_Tests-resources.sh │ │ ├── Pods-TanibleView_Tests-umbrella.h │ │ ├── Pods-TanibleView_Tests.debug.xcconfig │ │ ├── Pods-TanibleView_Tests.modulemap │ │ └── Pods-TanibleView_Tests.release.xcconfig │ │ └── TanibleView │ │ ├── Info.plist │ │ ├── TanibleView-dummy.m │ │ ├── TanibleView-prefix.pch │ │ ├── TanibleView-umbrella.h │ │ ├── TanibleView.modulemap │ │ └── TanibleView.xcconfig ├── TanibleView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TanibleView-Example.xcscheme ├── TanibleView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── TanibleView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icLarge@2x.png │ │ │ ├── icLarge@3x.png │ │ │ ├── icMedium@2x.png │ │ │ ├── icMedium@3x.png │ │ │ ├── icSmall@2x.png │ │ │ └── icSmall@3x.png │ │ ├── Contents.json │ │ └── imgLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── imgLogo.png │ │ │ ├── imgLogo@2x.png │ │ │ └── imgLogo@3x.png │ ├── Info.plist │ ├── TanibleViewController.swift │ └── ViewController.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── TanibleView.podspec ├── TanibleView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── TanibleView.swift │ └── TanibleViewDirection.swift └── _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: xcode10.2 6 | language: swift 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/TanibleView.xcworkspace -scheme TanibleView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'TanibleView_Example' do 4 | pod 'TanibleView', :path => '../' 5 | end 6 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TanibleView (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TanibleView (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TanibleView: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | TanibleView: dced8dd4f99b9c72410cddcadaa80eaaca1bd5ee 13 | 14 | PODFILE CHECKSUM: 7cb87664b30b7d8751037f446eae9ba191d334bb 15 | 16 | COCOAPODS: 1.5.2 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/TanibleView.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TanibleView", 3 | "version": "0.1.0", 4 | "summary": "A short description of TanibleView.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/dokgi1988/TanibleView", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "dokgi1988": "dokgi88@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/dokgi1988/TanibleView.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "TanibleView/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TanibleView (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TanibleView (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TanibleView: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | TanibleView: dced8dd4f99b9c72410cddcadaa80eaaca1bd5ee 13 | 14 | PODFILE CHECKSUM: 7cb87664b30b7d8751037f446eae9ba191d334bb 15 | 16 | COCOAPODS: 1.5.2 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 | 042D88ECCC2EDCEF349F4B93929436B2 /* TanibleView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A2EDCA9DFCCB66EABC3A16259E08D6CC /* TanibleView-dummy.m */; }; 11 | 3AFAE47CA6EF41AF6CEF0784B6A49C81 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 12 | 4FF59FDA9F329162138DC49DAB90D989 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 13 | 5DCAF714C1C1D0CBE6D63BC0095C926E /* Pods-TanibleView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 33CA62F0A4882D21DA50E198B1BA0046 /* Pods-TanibleView_Example-dummy.m */; }; 14 | 778FD1F2B189606227C22004BAE646E3 /* Pods-TanibleView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CC1AAA2BDEA342B37417CD291CB85005 /* Pods-TanibleView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 858B03F25966A673BCED4166EDF94D97 /* Pods-TanibleView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9439775053A23E71979B53215C6328A4 /* Pods-TanibleView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | AFE7C39FDC741103F21282770159D703 /* TanibleView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F8359BEEE83A8DCF72C07C2610DF94 /* TanibleView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | B9C2C2F19E6B5E23010CA72E8F4CFB93 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 18 | ED52D9AE2267752E0051C1D1 /* TanibleViewDirection.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED52D9AD2267752E0051C1D1 /* TanibleViewDirection.swift */; }; 19 | ED52D9B02267754B0051C1D1 /* TanibleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED52D9AF2267754B0051C1D1 /* TanibleView.swift */; }; 20 | FAFC8B5EFC2E0910002328DD2E6811E2 /* Pods-TanibleView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F9C2E5BCBCC4F6EB185AC48043ADAE13 /* Pods-TanibleView_Tests-dummy.m */; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 5863997F6DCA194C58FF6E53B9719C96 /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = 89F89F6F33EFC3E915B3B44DC339B771; 29 | remoteInfo = TanibleView; 30 | }; 31 | 95E7F6CA4D3B409364445600A0A976A5 /* PBXContainerItemProxy */ = { 32 | isa = PBXContainerItemProxy; 33 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 34 | proxyType = 1; 35 | remoteGlobalIDString = 709C582E63C2F911A71CE136F954599A; 36 | remoteInfo = "Pods-TanibleView_Example"; 37 | }; 38 | /* End PBXContainerItemProxy section */ 39 | 40 | /* Begin PBXFileReference section */ 41 | 151E68B87CEF871009B53CC30E81C45A /* Pods-TanibleView_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TanibleView_Tests-frameworks.sh"; sourceTree = ""; }; 42 | 1695523F5B9AEDC7B43CB6A36BB1AD25 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 43 | 170F9EF9A8E93423260E52551E289D96 /* Pods-TanibleView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TanibleView_Example.debug.xcconfig"; sourceTree = ""; }; 44 | 1B5B93BE784CCEBB111B782EEC429227 /* TanibleView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TanibleView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 252334AAB6CBB21576272D7D57AD0756 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | 2C875C549FC8C3AE36FAFB5C30D4FA2A /* TanibleView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = TanibleView.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 47 | 30A57327CEB20B8E11F3456C763847A4 /* Pods-TanibleView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TanibleView_Example.release.xcconfig"; sourceTree = ""; }; 48 | 33CA62F0A4882D21DA50E198B1BA0046 /* Pods-TanibleView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TanibleView_Example-dummy.m"; sourceTree = ""; }; 49 | 3F1EF5B81123C4B20D28B9905E94ECCD /* Pods-TanibleView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TanibleView_Example-acknowledgements.markdown"; sourceTree = ""; }; 50 | 458A1A4F6F97949B944352B4A99FD152 /* Pods_TanibleView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TanibleView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 47102F8F4BCBC3B8C5CF19DA49B9796F /* TanibleView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TanibleView-prefix.pch"; sourceTree = ""; }; 52 | 4BE75E80E87810EB27D198FD9B11BCF7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 53 | 4F244C7FD9B5A206056BFD4CB509FAA0 /* Pods-TanibleView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TanibleView_Tests.debug.xcconfig"; sourceTree = ""; }; 54 | 55097A999126D3669A67ED126A073C28 /* Pods-TanibleView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TanibleView_Tests.modulemap"; sourceTree = ""; }; 55 | 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 56 | 7385949B5E45F05489F3E9EB2C35A67A /* TanibleView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TanibleView.xcconfig; sourceTree = ""; }; 57 | 8DE1126ADBDC31C9CF1F6964571DC9EA /* Pods_TanibleView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TanibleView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 58 | 9172ED0DFCCE9A5E2E5D94290C61A4C7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 59 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 60 | 9439775053A23E71979B53215C6328A4 /* Pods-TanibleView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TanibleView_Tests-umbrella.h"; sourceTree = ""; }; 61 | A29E7C5360715FDAE8F8530613BBA0C4 /* Pods-TanibleView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TanibleView_Example.modulemap"; sourceTree = ""; }; 62 | A2EDCA9DFCCB66EABC3A16259E08D6CC /* TanibleView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TanibleView-dummy.m"; sourceTree = ""; }; 63 | ADD3E744B39B8DA6B9B838FDB589399C /* Pods-TanibleView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TanibleView_Example-acknowledgements.plist"; sourceTree = ""; }; 64 | AF726679C33B070482FF54E6034A9EE2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 65 | B133C9A2674AD7F88D032DDDE7FB709C /* TanibleView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = TanibleView.modulemap; sourceTree = ""; }; 66 | B5B75017C3F1F293C55FD0D95A84BD0C /* Pods-TanibleView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TanibleView_Example-frameworks.sh"; sourceTree = ""; }; 67 | B5D7A9DD38F338DDA417F99EFCB128D6 /* Pods-TanibleView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TanibleView_Tests.release.xcconfig"; sourceTree = ""; }; 68 | BAEBEEF36D4B340F43C4EF8A5CB41AB2 /* Pods-TanibleView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TanibleView_Tests-acknowledgements.markdown"; sourceTree = ""; }; 69 | BD482A2EB7292471175760E40AEDB6EC /* Pods-TanibleView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TanibleView_Tests-acknowledgements.plist"; sourceTree = ""; }; 70 | C4783BAB3986A1B82FD2E7882540C91F /* Pods-TanibleView_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TanibleView_Example-resources.sh"; sourceTree = ""; }; 71 | CC1AAA2BDEA342B37417CD291CB85005 /* Pods-TanibleView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TanibleView_Example-umbrella.h"; sourceTree = ""; }; 72 | E4F8359BEEE83A8DCF72C07C2610DF94 /* TanibleView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TanibleView-umbrella.h"; sourceTree = ""; }; 73 | ED52D9AD2267752E0051C1D1 /* TanibleViewDirection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TanibleViewDirection.swift; path = TanibleView/Classes/TanibleViewDirection.swift; sourceTree = ""; }; 74 | ED52D9AF2267754B0051C1D1 /* TanibleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TanibleView.swift; path = TanibleView/Classes/TanibleView.swift; sourceTree = ""; }; 75 | F9C2E5BCBCC4F6EB185AC48043ADAE13 /* Pods-TanibleView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TanibleView_Tests-dummy.m"; sourceTree = ""; }; 76 | F9C4D3E2D12221772AF5E7432AB9DE23 /* Pods-TanibleView_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TanibleView_Tests-resources.sh"; sourceTree = ""; }; 77 | /* End PBXFileReference section */ 78 | 79 | /* Begin PBXFrameworksBuildPhase section */ 80 | 323C966A160898C734AE0731572E9AE9 /* Frameworks */ = { 81 | isa = PBXFrameworksBuildPhase; 82 | buildActionMask = 2147483647; 83 | files = ( 84 | 3AFAE47CA6EF41AF6CEF0784B6A49C81 /* Foundation.framework in Frameworks */, 85 | ); 86 | runOnlyForDeploymentPostprocessing = 0; 87 | }; 88 | 697E95C1B1EF8BFBE4EE681260F09584 /* Frameworks */ = { 89 | isa = PBXFrameworksBuildPhase; 90 | buildActionMask = 2147483647; 91 | files = ( 92 | B9C2C2F19E6B5E23010CA72E8F4CFB93 /* Foundation.framework in Frameworks */, 93 | ); 94 | runOnlyForDeploymentPostprocessing = 0; 95 | }; 96 | 99B55B8215B12EB8BDC1DCF68E349ACF /* Frameworks */ = { 97 | isa = PBXFrameworksBuildPhase; 98 | buildActionMask = 2147483647; 99 | files = ( 100 | 4FF59FDA9F329162138DC49DAB90D989 /* Foundation.framework in Frameworks */, 101 | ); 102 | runOnlyForDeploymentPostprocessing = 0; 103 | }; 104 | /* End PBXFrameworksBuildPhase section */ 105 | 106 | /* Begin PBXGroup section */ 107 | 0221B5418E3583794309E176E026286B /* Pods-TanibleView_Tests */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 9172ED0DFCCE9A5E2E5D94290C61A4C7 /* Info.plist */, 111 | 55097A999126D3669A67ED126A073C28 /* Pods-TanibleView_Tests.modulemap */, 112 | BAEBEEF36D4B340F43C4EF8A5CB41AB2 /* Pods-TanibleView_Tests-acknowledgements.markdown */, 113 | BD482A2EB7292471175760E40AEDB6EC /* Pods-TanibleView_Tests-acknowledgements.plist */, 114 | F9C2E5BCBCC4F6EB185AC48043ADAE13 /* Pods-TanibleView_Tests-dummy.m */, 115 | 151E68B87CEF871009B53CC30E81C45A /* Pods-TanibleView_Tests-frameworks.sh */, 116 | F9C4D3E2D12221772AF5E7432AB9DE23 /* Pods-TanibleView_Tests-resources.sh */, 117 | 9439775053A23E71979B53215C6328A4 /* Pods-TanibleView_Tests-umbrella.h */, 118 | 4F244C7FD9B5A206056BFD4CB509FAA0 /* Pods-TanibleView_Tests.debug.xcconfig */, 119 | B5D7A9DD38F338DDA417F99EFCB128D6 /* Pods-TanibleView_Tests.release.xcconfig */, 120 | ); 121 | name = "Pods-TanibleView_Tests"; 122 | path = "Target Support Files/Pods-TanibleView_Tests"; 123 | sourceTree = ""; 124 | }; 125 | 2BBCE51E2FA75E6111A116F77D9C0F0A /* Pod */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | 1695523F5B9AEDC7B43CB6A36BB1AD25 /* LICENSE */, 129 | AF726679C33B070482FF54E6034A9EE2 /* README.md */, 130 | 2C875C549FC8C3AE36FAFB5C30D4FA2A /* TanibleView.podspec */, 131 | ); 132 | name = Pod; 133 | sourceTree = ""; 134 | }; 135 | 535C88C8EC4BAF998224778CD50D9028 /* Products */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 458A1A4F6F97949B944352B4A99FD152 /* Pods_TanibleView_Example.framework */, 139 | 8DE1126ADBDC31C9CF1F6964571DC9EA /* Pods_TanibleView_Tests.framework */, 140 | 1B5B93BE784CCEBB111B782EEC429227 /* TanibleView.framework */, 141 | ); 142 | name = Products; 143 | sourceTree = ""; 144 | }; 145 | 5E0D919E635D23B70123790B8308F8EF /* iOS */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */, 149 | ); 150 | name = iOS; 151 | sourceTree = ""; 152 | }; 153 | 66D00C4DBEC6B7FB3121DB543D3F10F2 /* TanibleView */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | ED52D9AF2267754B0051C1D1 /* TanibleView.swift */, 157 | ED52D9AD2267752E0051C1D1 /* TanibleViewDirection.swift */, 158 | 2BBCE51E2FA75E6111A116F77D9C0F0A /* Pod */, 159 | D2D430E654D1F02D57DE2C3E5F06E8E5 /* Support Files */, 160 | ); 161 | name = TanibleView; 162 | path = ../..; 163 | sourceTree = ""; 164 | }; 165 | 7475E8E79DEB5C4A3F1639124EE8AF82 /* Pods-TanibleView_Example */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | 4BE75E80E87810EB27D198FD9B11BCF7 /* Info.plist */, 169 | A29E7C5360715FDAE8F8530613BBA0C4 /* Pods-TanibleView_Example.modulemap */, 170 | 3F1EF5B81123C4B20D28B9905E94ECCD /* Pods-TanibleView_Example-acknowledgements.markdown */, 171 | ADD3E744B39B8DA6B9B838FDB589399C /* Pods-TanibleView_Example-acknowledgements.plist */, 172 | 33CA62F0A4882D21DA50E198B1BA0046 /* Pods-TanibleView_Example-dummy.m */, 173 | B5B75017C3F1F293C55FD0D95A84BD0C /* Pods-TanibleView_Example-frameworks.sh */, 174 | C4783BAB3986A1B82FD2E7882540C91F /* Pods-TanibleView_Example-resources.sh */, 175 | CC1AAA2BDEA342B37417CD291CB85005 /* Pods-TanibleView_Example-umbrella.h */, 176 | 170F9EF9A8E93423260E52551E289D96 /* Pods-TanibleView_Example.debug.xcconfig */, 177 | 30A57327CEB20B8E11F3456C763847A4 /* Pods-TanibleView_Example.release.xcconfig */, 178 | ); 179 | name = "Pods-TanibleView_Example"; 180 | path = "Target Support Files/Pods-TanibleView_Example"; 181 | sourceTree = ""; 182 | }; 183 | 7DB346D0F39D3F0E887471402A8071AB = { 184 | isa = PBXGroup; 185 | children = ( 186 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 187 | C08EB70D3FA2CDE52FB94F810202E6FD /* Development Pods */, 188 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 189 | 535C88C8EC4BAF998224778CD50D9028 /* Products */, 190 | CDF94ED532814F548C6AB30CF1469C83 /* Targets Support Files */, 191 | ); 192 | sourceTree = ""; 193 | }; 194 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 195 | isa = PBXGroup; 196 | children = ( 197 | 5E0D919E635D23B70123790B8308F8EF /* iOS */, 198 | ); 199 | name = Frameworks; 200 | sourceTree = ""; 201 | }; 202 | C08EB70D3FA2CDE52FB94F810202E6FD /* Development Pods */ = { 203 | isa = PBXGroup; 204 | children = ( 205 | 66D00C4DBEC6B7FB3121DB543D3F10F2 /* TanibleView */, 206 | ); 207 | name = "Development Pods"; 208 | sourceTree = ""; 209 | }; 210 | CDF94ED532814F548C6AB30CF1469C83 /* Targets Support Files */ = { 211 | isa = PBXGroup; 212 | children = ( 213 | 7475E8E79DEB5C4A3F1639124EE8AF82 /* Pods-TanibleView_Example */, 214 | 0221B5418E3583794309E176E026286B /* Pods-TanibleView_Tests */, 215 | ); 216 | name = "Targets Support Files"; 217 | sourceTree = ""; 218 | }; 219 | D2D430E654D1F02D57DE2C3E5F06E8E5 /* Support Files */ = { 220 | isa = PBXGroup; 221 | children = ( 222 | 252334AAB6CBB21576272D7D57AD0756 /* Info.plist */, 223 | B133C9A2674AD7F88D032DDDE7FB709C /* TanibleView.modulemap */, 224 | 7385949B5E45F05489F3E9EB2C35A67A /* TanibleView.xcconfig */, 225 | A2EDCA9DFCCB66EABC3A16259E08D6CC /* TanibleView-dummy.m */, 226 | 47102F8F4BCBC3B8C5CF19DA49B9796F /* TanibleView-prefix.pch */, 227 | E4F8359BEEE83A8DCF72C07C2610DF94 /* TanibleView-umbrella.h */, 228 | ); 229 | name = "Support Files"; 230 | path = "Example/Pods/Target Support Files/TanibleView"; 231 | sourceTree = ""; 232 | }; 233 | /* End PBXGroup section */ 234 | 235 | /* Begin PBXHeadersBuildPhase section */ 236 | 4359E48A1C883A2BC3CD6040D8C46D65 /* Headers */ = { 237 | isa = PBXHeadersBuildPhase; 238 | buildActionMask = 2147483647; 239 | files = ( 240 | 858B03F25966A673BCED4166EDF94D97 /* Pods-TanibleView_Tests-umbrella.h in Headers */, 241 | ); 242 | runOnlyForDeploymentPostprocessing = 0; 243 | }; 244 | 73A5A51214F1446D245D70F7D0CAB14D /* Headers */ = { 245 | isa = PBXHeadersBuildPhase; 246 | buildActionMask = 2147483647; 247 | files = ( 248 | 778FD1F2B189606227C22004BAE646E3 /* Pods-TanibleView_Example-umbrella.h in Headers */, 249 | ); 250 | runOnlyForDeploymentPostprocessing = 0; 251 | }; 252 | CBBE50DB6EEEDF09353E39F4661685FE /* Headers */ = { 253 | isa = PBXHeadersBuildPhase; 254 | buildActionMask = 2147483647; 255 | files = ( 256 | AFE7C39FDC741103F21282770159D703 /* TanibleView-umbrella.h in Headers */, 257 | ); 258 | runOnlyForDeploymentPostprocessing = 0; 259 | }; 260 | /* End PBXHeadersBuildPhase section */ 261 | 262 | /* Begin PBXNativeTarget section */ 263 | 67E80847D77F7E45E5E6E26AFA656D98 /* Pods-TanibleView_Tests */ = { 264 | isa = PBXNativeTarget; 265 | buildConfigurationList = 5BD2735401EEE5DDCB307532D310DDD5 /* Build configuration list for PBXNativeTarget "Pods-TanibleView_Tests" */; 266 | buildPhases = ( 267 | 26F717927B78E0CDC12019A3645827F7 /* Sources */, 268 | 99B55B8215B12EB8BDC1DCF68E349ACF /* Frameworks */, 269 | 4359E48A1C883A2BC3CD6040D8C46D65 /* Headers */, 270 | ); 271 | buildRules = ( 272 | ); 273 | dependencies = ( 274 | E47D7E9F33320758A3A3F61E525F924D /* PBXTargetDependency */, 275 | ); 276 | name = "Pods-TanibleView_Tests"; 277 | productName = "Pods-TanibleView_Tests"; 278 | productReference = 8DE1126ADBDC31C9CF1F6964571DC9EA /* Pods_TanibleView_Tests.framework */; 279 | productType = "com.apple.product-type.framework"; 280 | }; 281 | 709C582E63C2F911A71CE136F954599A /* Pods-TanibleView_Example */ = { 282 | isa = PBXNativeTarget; 283 | buildConfigurationList = 64B96862661CC175D1BDB376EF35FB57 /* Build configuration list for PBXNativeTarget "Pods-TanibleView_Example" */; 284 | buildPhases = ( 285 | 71B7BCB78EB82D688D3ADDEEFF29E53D /* Sources */, 286 | 323C966A160898C734AE0731572E9AE9 /* Frameworks */, 287 | 73A5A51214F1446D245D70F7D0CAB14D /* Headers */, 288 | ); 289 | buildRules = ( 290 | ); 291 | dependencies = ( 292 | BE07C422678E972A1C46DA04E0D46110 /* PBXTargetDependency */, 293 | ); 294 | name = "Pods-TanibleView_Example"; 295 | productName = "Pods-TanibleView_Example"; 296 | productReference = 458A1A4F6F97949B944352B4A99FD152 /* Pods_TanibleView_Example.framework */; 297 | productType = "com.apple.product-type.framework"; 298 | }; 299 | 89F89F6F33EFC3E915B3B44DC339B771 /* TanibleView */ = { 300 | isa = PBXNativeTarget; 301 | buildConfigurationList = 4EB503D338558CB51E22E992FE767DD0 /* Build configuration list for PBXNativeTarget "TanibleView" */; 302 | buildPhases = ( 303 | 1A821B26DD38FA22F45CAEC644B509E1 /* Sources */, 304 | 697E95C1B1EF8BFBE4EE681260F09584 /* Frameworks */, 305 | CBBE50DB6EEEDF09353E39F4661685FE /* Headers */, 306 | ); 307 | buildRules = ( 308 | ); 309 | dependencies = ( 310 | ); 311 | name = TanibleView; 312 | productName = TanibleView; 313 | productReference = 1B5B93BE784CCEBB111B782EEC429227 /* TanibleView.framework */; 314 | productType = "com.apple.product-type.framework"; 315 | }; 316 | /* End PBXNativeTarget section */ 317 | 318 | /* Begin PBXProject section */ 319 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 320 | isa = PBXProject; 321 | attributes = { 322 | LastSwiftUpdateCheck = 0930; 323 | LastUpgradeCheck = 0930; 324 | TargetAttributes = { 325 | 709C582E63C2F911A71CE136F954599A = { 326 | LastSwiftMigration = 1020; 327 | }; 328 | 89F89F6F33EFC3E915B3B44DC339B771 = { 329 | LastSwiftMigration = 1020; 330 | }; 331 | }; 332 | }; 333 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 334 | compatibilityVersion = "Xcode 3.2"; 335 | developmentRegion = English; 336 | hasScannedForEncodings = 0; 337 | knownRegions = ( 338 | English, 339 | en, 340 | ); 341 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 342 | productRefGroup = 535C88C8EC4BAF998224778CD50D9028 /* Products */; 343 | projectDirPath = ""; 344 | projectRoot = ""; 345 | targets = ( 346 | 709C582E63C2F911A71CE136F954599A /* Pods-TanibleView_Example */, 347 | 67E80847D77F7E45E5E6E26AFA656D98 /* Pods-TanibleView_Tests */, 348 | 89F89F6F33EFC3E915B3B44DC339B771 /* TanibleView */, 349 | ); 350 | }; 351 | /* End PBXProject section */ 352 | 353 | /* Begin PBXSourcesBuildPhase section */ 354 | 1A821B26DD38FA22F45CAEC644B509E1 /* Sources */ = { 355 | isa = PBXSourcesBuildPhase; 356 | buildActionMask = 2147483647; 357 | files = ( 358 | ED52D9AE2267752E0051C1D1 /* TanibleViewDirection.swift in Sources */, 359 | 042D88ECCC2EDCEF349F4B93929436B2 /* TanibleView-dummy.m in Sources */, 360 | ED52D9B02267754B0051C1D1 /* TanibleView.swift in Sources */, 361 | ); 362 | runOnlyForDeploymentPostprocessing = 0; 363 | }; 364 | 26F717927B78E0CDC12019A3645827F7 /* Sources */ = { 365 | isa = PBXSourcesBuildPhase; 366 | buildActionMask = 2147483647; 367 | files = ( 368 | FAFC8B5EFC2E0910002328DD2E6811E2 /* Pods-TanibleView_Tests-dummy.m in Sources */, 369 | ); 370 | runOnlyForDeploymentPostprocessing = 0; 371 | }; 372 | 71B7BCB78EB82D688D3ADDEEFF29E53D /* Sources */ = { 373 | isa = PBXSourcesBuildPhase; 374 | buildActionMask = 2147483647; 375 | files = ( 376 | 5DCAF714C1C1D0CBE6D63BC0095C926E /* Pods-TanibleView_Example-dummy.m in Sources */, 377 | ); 378 | runOnlyForDeploymentPostprocessing = 0; 379 | }; 380 | /* End PBXSourcesBuildPhase section */ 381 | 382 | /* Begin PBXTargetDependency section */ 383 | BE07C422678E972A1C46DA04E0D46110 /* PBXTargetDependency */ = { 384 | isa = PBXTargetDependency; 385 | name = TanibleView; 386 | target = 89F89F6F33EFC3E915B3B44DC339B771 /* TanibleView */; 387 | targetProxy = 5863997F6DCA194C58FF6E53B9719C96 /* PBXContainerItemProxy */; 388 | }; 389 | E47D7E9F33320758A3A3F61E525F924D /* PBXTargetDependency */ = { 390 | isa = PBXTargetDependency; 391 | name = "Pods-TanibleView_Example"; 392 | target = 709C582E63C2F911A71CE136F954599A /* Pods-TanibleView_Example */; 393 | targetProxy = 95E7F6CA4D3B409364445600A0A976A5 /* PBXContainerItemProxy */; 394 | }; 395 | /* End PBXTargetDependency section */ 396 | 397 | /* Begin XCBuildConfiguration section */ 398 | 2CC029000F30EB7FE2ECD3572A12D0BD /* Release */ = { 399 | isa = XCBuildConfiguration; 400 | baseConfigurationReference = 30A57327CEB20B8E11F3456C763847A4 /* Pods-TanibleView_Example.release.xcconfig */; 401 | buildSettings = { 402 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 403 | CLANG_ENABLE_MODULES = YES; 404 | CODE_SIGN_IDENTITY = ""; 405 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 406 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 407 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 408 | CURRENT_PROJECT_VERSION = 1; 409 | DEFINES_MODULE = YES; 410 | DYLIB_COMPATIBILITY_VERSION = 1; 411 | DYLIB_CURRENT_VERSION = 1; 412 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 413 | INFOPLIST_FILE = "Target Support Files/Pods-TanibleView_Example/Info.plist"; 414 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 415 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 416 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 417 | MACH_O_TYPE = staticlib; 418 | MODULEMAP_FILE = "Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example.modulemap"; 419 | OTHER_LDFLAGS = ""; 420 | OTHER_LIBTOOLFLAGS = ""; 421 | PODS_ROOT = "$(SRCROOT)"; 422 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 423 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 424 | SDKROOT = iphoneos; 425 | SKIP_INSTALL = YES; 426 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 427 | SWIFT_VERSION = 5.0; 428 | TARGETED_DEVICE_FAMILY = "1,2"; 429 | VALIDATE_PRODUCT = YES; 430 | VERSIONING_SYSTEM = "apple-generic"; 431 | VERSION_INFO_PREFIX = ""; 432 | }; 433 | name = Release; 434 | }; 435 | 411043F9350D7EC5D72F857F775E7D15 /* Release */ = { 436 | isa = XCBuildConfiguration; 437 | baseConfigurationReference = 7385949B5E45F05489F3E9EB2C35A67A /* TanibleView.xcconfig */; 438 | buildSettings = { 439 | CLANG_ENABLE_MODULES = YES; 440 | CODE_SIGN_IDENTITY = ""; 441 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 442 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 443 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 444 | CURRENT_PROJECT_VERSION = 1; 445 | DEFINES_MODULE = YES; 446 | DYLIB_COMPATIBILITY_VERSION = 1; 447 | DYLIB_CURRENT_VERSION = 1; 448 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 449 | GCC_PREFIX_HEADER = "Target Support Files/TanibleView/TanibleView-prefix.pch"; 450 | INFOPLIST_FILE = "Target Support Files/TanibleView/Info.plist"; 451 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 452 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 453 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 454 | MODULEMAP_FILE = "Target Support Files/TanibleView/TanibleView.modulemap"; 455 | PRODUCT_MODULE_NAME = TanibleView; 456 | PRODUCT_NAME = TanibleView; 457 | SDKROOT = iphoneos; 458 | SKIP_INSTALL = YES; 459 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 460 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 461 | SWIFT_VERSION = 4.0; 462 | TARGETED_DEVICE_FAMILY = "1,2"; 463 | VALIDATE_PRODUCT = YES; 464 | VERSIONING_SYSTEM = "apple-generic"; 465 | VERSION_INFO_PREFIX = ""; 466 | }; 467 | name = Release; 468 | }; 469 | 4693F9E903EA84D1FC25376CDCDFF750 /* Debug */ = { 470 | isa = XCBuildConfiguration; 471 | baseConfigurationReference = 4F244C7FD9B5A206056BFD4CB509FAA0 /* Pods-TanibleView_Tests.debug.xcconfig */; 472 | buildSettings = { 473 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 474 | CODE_SIGN_IDENTITY = ""; 475 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 476 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 477 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 478 | CURRENT_PROJECT_VERSION = 1; 479 | DEFINES_MODULE = YES; 480 | DYLIB_COMPATIBILITY_VERSION = 1; 481 | DYLIB_CURRENT_VERSION = 1; 482 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 483 | INFOPLIST_FILE = "Target Support Files/Pods-TanibleView_Tests/Info.plist"; 484 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 485 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 486 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 487 | MACH_O_TYPE = staticlib; 488 | MODULEMAP_FILE = "Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_Tests.modulemap"; 489 | OTHER_LDFLAGS = ""; 490 | OTHER_LIBTOOLFLAGS = ""; 491 | PODS_ROOT = "$(SRCROOT)"; 492 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 493 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 494 | SDKROOT = iphoneos; 495 | SKIP_INSTALL = YES; 496 | TARGETED_DEVICE_FAMILY = "1,2"; 497 | VERSIONING_SYSTEM = "apple-generic"; 498 | VERSION_INFO_PREFIX = ""; 499 | }; 500 | name = Debug; 501 | }; 502 | 8B33C5230DE4A9DFA6D8F46505DD7AF7 /* Debug */ = { 503 | isa = XCBuildConfiguration; 504 | buildSettings = { 505 | ALWAYS_SEARCH_USER_PATHS = NO; 506 | CLANG_ANALYZER_NONNULL = YES; 507 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 508 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 509 | CLANG_CXX_LIBRARY = "libc++"; 510 | CLANG_ENABLE_MODULES = YES; 511 | CLANG_ENABLE_OBJC_ARC = YES; 512 | CLANG_ENABLE_OBJC_WEAK = YES; 513 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 514 | CLANG_WARN_BOOL_CONVERSION = YES; 515 | CLANG_WARN_COMMA = YES; 516 | CLANG_WARN_CONSTANT_CONVERSION = YES; 517 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 518 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 519 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 520 | CLANG_WARN_EMPTY_BODY = YES; 521 | CLANG_WARN_ENUM_CONVERSION = YES; 522 | CLANG_WARN_INFINITE_RECURSION = YES; 523 | CLANG_WARN_INT_CONVERSION = YES; 524 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 525 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 526 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 527 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 528 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 529 | CLANG_WARN_STRICT_PROTOTYPES = YES; 530 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 531 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 532 | CLANG_WARN_UNREACHABLE_CODE = YES; 533 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 534 | CODE_SIGNING_ALLOWED = NO; 535 | CODE_SIGNING_REQUIRED = NO; 536 | COPY_PHASE_STRIP = NO; 537 | DEBUG_INFORMATION_FORMAT = dwarf; 538 | ENABLE_STRICT_OBJC_MSGSEND = YES; 539 | ENABLE_TESTABILITY = YES; 540 | GCC_C_LANGUAGE_STANDARD = gnu11; 541 | GCC_DYNAMIC_NO_PIC = NO; 542 | GCC_NO_COMMON_BLOCKS = YES; 543 | GCC_OPTIMIZATION_LEVEL = 0; 544 | GCC_PREPROCESSOR_DEFINITIONS = ( 545 | "POD_CONFIGURATION_DEBUG=1", 546 | "DEBUG=1", 547 | "$(inherited)", 548 | ); 549 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 550 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 551 | GCC_WARN_UNDECLARED_SELECTOR = YES; 552 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 553 | GCC_WARN_UNUSED_FUNCTION = YES; 554 | GCC_WARN_UNUSED_VARIABLE = YES; 555 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 556 | MTL_ENABLE_DEBUG_INFO = YES; 557 | ONLY_ACTIVE_ARCH = YES; 558 | PRODUCT_NAME = "$(TARGET_NAME)"; 559 | STRIP_INSTALLED_PRODUCT = NO; 560 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 561 | SYMROOT = "${SRCROOT}/../build"; 562 | }; 563 | name = Debug; 564 | }; 565 | 9C10E12D509FD88949237A7D69163489 /* Release */ = { 566 | isa = XCBuildConfiguration; 567 | baseConfigurationReference = B5D7A9DD38F338DDA417F99EFCB128D6 /* Pods-TanibleView_Tests.release.xcconfig */; 568 | buildSettings = { 569 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 570 | CODE_SIGN_IDENTITY = ""; 571 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 572 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 573 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 574 | CURRENT_PROJECT_VERSION = 1; 575 | DEFINES_MODULE = YES; 576 | DYLIB_COMPATIBILITY_VERSION = 1; 577 | DYLIB_CURRENT_VERSION = 1; 578 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 579 | INFOPLIST_FILE = "Target Support Files/Pods-TanibleView_Tests/Info.plist"; 580 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 581 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 582 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 583 | MACH_O_TYPE = staticlib; 584 | MODULEMAP_FILE = "Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_Tests.modulemap"; 585 | OTHER_LDFLAGS = ""; 586 | OTHER_LIBTOOLFLAGS = ""; 587 | PODS_ROOT = "$(SRCROOT)"; 588 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 589 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 590 | SDKROOT = iphoneos; 591 | SKIP_INSTALL = YES; 592 | TARGETED_DEVICE_FAMILY = "1,2"; 593 | VALIDATE_PRODUCT = YES; 594 | VERSIONING_SYSTEM = "apple-generic"; 595 | VERSION_INFO_PREFIX = ""; 596 | }; 597 | name = Release; 598 | }; 599 | B42B54097A876E8A982CBF5DAA91B1AB /* Release */ = { 600 | isa = XCBuildConfiguration; 601 | buildSettings = { 602 | ALWAYS_SEARCH_USER_PATHS = NO; 603 | CLANG_ANALYZER_NONNULL = YES; 604 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 605 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 606 | CLANG_CXX_LIBRARY = "libc++"; 607 | CLANG_ENABLE_MODULES = YES; 608 | CLANG_ENABLE_OBJC_ARC = YES; 609 | CLANG_ENABLE_OBJC_WEAK = YES; 610 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 611 | CLANG_WARN_BOOL_CONVERSION = YES; 612 | CLANG_WARN_COMMA = YES; 613 | CLANG_WARN_CONSTANT_CONVERSION = YES; 614 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 615 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 616 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 617 | CLANG_WARN_EMPTY_BODY = YES; 618 | CLANG_WARN_ENUM_CONVERSION = YES; 619 | CLANG_WARN_INFINITE_RECURSION = YES; 620 | CLANG_WARN_INT_CONVERSION = YES; 621 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 622 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 623 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 624 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 625 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 626 | CLANG_WARN_STRICT_PROTOTYPES = YES; 627 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 628 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 629 | CLANG_WARN_UNREACHABLE_CODE = YES; 630 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 631 | CODE_SIGNING_ALLOWED = NO; 632 | CODE_SIGNING_REQUIRED = NO; 633 | COPY_PHASE_STRIP = NO; 634 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 635 | ENABLE_NS_ASSERTIONS = NO; 636 | ENABLE_STRICT_OBJC_MSGSEND = YES; 637 | GCC_C_LANGUAGE_STANDARD = gnu11; 638 | GCC_NO_COMMON_BLOCKS = YES; 639 | GCC_PREPROCESSOR_DEFINITIONS = ( 640 | "POD_CONFIGURATION_RELEASE=1", 641 | "$(inherited)", 642 | ); 643 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 644 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 645 | GCC_WARN_UNDECLARED_SELECTOR = YES; 646 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 647 | GCC_WARN_UNUSED_FUNCTION = YES; 648 | GCC_WARN_UNUSED_VARIABLE = YES; 649 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 650 | MTL_ENABLE_DEBUG_INFO = NO; 651 | PRODUCT_NAME = "$(TARGET_NAME)"; 652 | STRIP_INSTALLED_PRODUCT = NO; 653 | SYMROOT = "${SRCROOT}/../build"; 654 | }; 655 | name = Release; 656 | }; 657 | B70073CD3213F8F2C6A7822D431AD15B /* Debug */ = { 658 | isa = XCBuildConfiguration; 659 | baseConfigurationReference = 7385949B5E45F05489F3E9EB2C35A67A /* TanibleView.xcconfig */; 660 | buildSettings = { 661 | CLANG_ENABLE_MODULES = YES; 662 | CODE_SIGN_IDENTITY = ""; 663 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 664 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 665 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 666 | CURRENT_PROJECT_VERSION = 1; 667 | DEFINES_MODULE = YES; 668 | DYLIB_COMPATIBILITY_VERSION = 1; 669 | DYLIB_CURRENT_VERSION = 1; 670 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 671 | GCC_PREFIX_HEADER = "Target Support Files/TanibleView/TanibleView-prefix.pch"; 672 | INFOPLIST_FILE = "Target Support Files/TanibleView/Info.plist"; 673 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 674 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 675 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 676 | MODULEMAP_FILE = "Target Support Files/TanibleView/TanibleView.modulemap"; 677 | PRODUCT_MODULE_NAME = TanibleView; 678 | PRODUCT_NAME = TanibleView; 679 | SDKROOT = iphoneos; 680 | SKIP_INSTALL = YES; 681 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 682 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 683 | SWIFT_VERSION = 4.0; 684 | TARGETED_DEVICE_FAMILY = "1,2"; 685 | VERSIONING_SYSTEM = "apple-generic"; 686 | VERSION_INFO_PREFIX = ""; 687 | }; 688 | name = Debug; 689 | }; 690 | BA0EC6D1085936625646F8A46FA57EC7 /* Debug */ = { 691 | isa = XCBuildConfiguration; 692 | baseConfigurationReference = 170F9EF9A8E93423260E52551E289D96 /* Pods-TanibleView_Example.debug.xcconfig */; 693 | buildSettings = { 694 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 695 | CLANG_ENABLE_MODULES = YES; 696 | CODE_SIGN_IDENTITY = ""; 697 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 698 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 699 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 700 | CURRENT_PROJECT_VERSION = 1; 701 | DEFINES_MODULE = YES; 702 | DYLIB_COMPATIBILITY_VERSION = 1; 703 | DYLIB_CURRENT_VERSION = 1; 704 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 705 | INFOPLIST_FILE = "Target Support Files/Pods-TanibleView_Example/Info.plist"; 706 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 707 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 708 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 709 | MACH_O_TYPE = staticlib; 710 | MODULEMAP_FILE = "Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example.modulemap"; 711 | OTHER_LDFLAGS = ""; 712 | OTHER_LIBTOOLFLAGS = ""; 713 | PODS_ROOT = "$(SRCROOT)"; 714 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 715 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 716 | SDKROOT = iphoneos; 717 | SKIP_INSTALL = YES; 718 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 719 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 720 | SWIFT_VERSION = 5.0; 721 | TARGETED_DEVICE_FAMILY = "1,2"; 722 | VERSIONING_SYSTEM = "apple-generic"; 723 | VERSION_INFO_PREFIX = ""; 724 | }; 725 | name = Debug; 726 | }; 727 | /* End XCBuildConfiguration section */ 728 | 729 | /* Begin XCConfigurationList section */ 730 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 731 | isa = XCConfigurationList; 732 | buildConfigurations = ( 733 | 8B33C5230DE4A9DFA6D8F46505DD7AF7 /* Debug */, 734 | B42B54097A876E8A982CBF5DAA91B1AB /* Release */, 735 | ); 736 | defaultConfigurationIsVisible = 0; 737 | defaultConfigurationName = Release; 738 | }; 739 | 4EB503D338558CB51E22E992FE767DD0 /* Build configuration list for PBXNativeTarget "TanibleView" */ = { 740 | isa = XCConfigurationList; 741 | buildConfigurations = ( 742 | B70073CD3213F8F2C6A7822D431AD15B /* Debug */, 743 | 411043F9350D7EC5D72F857F775E7D15 /* Release */, 744 | ); 745 | defaultConfigurationIsVisible = 0; 746 | defaultConfigurationName = Release; 747 | }; 748 | 5BD2735401EEE5DDCB307532D310DDD5 /* Build configuration list for PBXNativeTarget "Pods-TanibleView_Tests" */ = { 749 | isa = XCConfigurationList; 750 | buildConfigurations = ( 751 | 4693F9E903EA84D1FC25376CDCDFF750 /* Debug */, 752 | 9C10E12D509FD88949237A7D69163489 /* Release */, 753 | ); 754 | defaultConfigurationIsVisible = 0; 755 | defaultConfigurationName = Release; 756 | }; 757 | 64B96862661CC175D1BDB376EF35FB57 /* Build configuration list for PBXNativeTarget "Pods-TanibleView_Example" */ = { 758 | isa = XCConfigurationList; 759 | buildConfigurations = ( 760 | BA0EC6D1085936625646F8A46FA57EC7 /* Debug */, 761 | 2CC029000F30EB7FE2ECD3572A12D0BD /* Release */, 762 | ); 763 | defaultConfigurationIsVisible = 0; 764 | defaultConfigurationName = Release; 765 | }; 766 | /* End XCConfigurationList section */ 767 | }; 768 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 769 | } 770 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_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-TanibleView_Example/Pods-TanibleView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## TanibleView 5 | 6 | Copyright (c) 2019 dokgi1988 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-TanibleView_Example/Pods-TanibleView_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) 2019 dokgi1988 <dokgi88@gmail.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 | TanibleView 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-TanibleView_Example/Pods-TanibleView_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TanibleView_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TanibleView_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 7 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # frameworks to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 14 | 15 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 16 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 17 | 18 | # Used as a return value for each invocation of `strip_invalid_archs` function. 19 | STRIP_BINARY_RETVAL=0 20 | 21 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 22 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 23 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 24 | 25 | # Copies and strips a vendored framework 26 | install_framework() 27 | { 28 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 29 | local source="${BUILT_PRODUCTS_DIR}/$1" 30 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 31 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 32 | elif [ -r "$1" ]; then 33 | local source="$1" 34 | fi 35 | 36 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 37 | 38 | if [ -L "${source}" ]; then 39 | echo "Symlinked..." 40 | source="$(readlink "${source}")" 41 | fi 42 | 43 | # Use filter instead of exclude so missing patterns don't throw errors. 44 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 45 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 46 | 47 | local basename 48 | basename="$(basename -s .framework "$1")" 49 | binary="${destination}/${basename}.framework/${basename}" 50 | if ! [ -r "$binary" ]; then 51 | binary="${destination}/${basename}" 52 | fi 53 | 54 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 55 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 56 | strip_invalid_archs "$binary" 57 | fi 58 | 59 | # Resign the code if required by the build settings to avoid unstable apps 60 | code_sign_if_enabled "${destination}/$(basename "$1")" 61 | 62 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 63 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 64 | local swift_runtime_libs 65 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 66 | for lib in $swift_runtime_libs; do 67 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 68 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 69 | code_sign_if_enabled "${destination}/${lib}" 70 | done 71 | fi 72 | } 73 | 74 | # Copies and strips a vendored dSYM 75 | install_dsym() { 76 | local source="$1" 77 | if [ -r "$source" ]; then 78 | # Copy the dSYM into a the targets temp dir. 79 | 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}\"" 80 | 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}" 81 | 82 | local basename 83 | basename="$(basename -s .framework.dSYM "$source")" 84 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 85 | 86 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 87 | if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then 88 | strip_invalid_archs "$binary" 89 | fi 90 | 91 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 92 | # Move the stripped file into its final destination. 93 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 94 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 95 | else 96 | # 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. 97 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 98 | fi 99 | fi 100 | } 101 | 102 | # Signs a framework with the provided identity 103 | code_sign_if_enabled() { 104 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 105 | # Use the current code_sign_identitiy 106 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 107 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 108 | 109 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 110 | code_sign_cmd="$code_sign_cmd &" 111 | fi 112 | echo "$code_sign_cmd" 113 | eval "$code_sign_cmd" 114 | fi 115 | } 116 | 117 | # Strip invalid architectures 118 | strip_invalid_archs() { 119 | binary="$1" 120 | # Get architectures for current target binary 121 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 122 | # Intersect them with the architectures we are building for 123 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 124 | # If there are no archs supported by this binary then warn the user 125 | if [[ -z "$intersected_archs" ]]; then 126 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 127 | STRIP_BINARY_RETVAL=0 128 | return 129 | fi 130 | stripped="" 131 | for arch in $binary_archs; do 132 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 133 | # Strip non-valid architectures in-place 134 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 135 | stripped="$stripped $arch" 136 | fi 137 | done 138 | if [[ "$stripped" ]]; then 139 | echo "Stripped $binary of architectures:$stripped" 140 | fi 141 | STRIP_BINARY_RETVAL=1 142 | } 143 | 144 | 145 | if [[ "$CONFIGURATION" == "Debug" ]]; then 146 | install_framework "${BUILT_PRODUCTS_DIR}/TanibleView/TanibleView.framework" 147 | fi 148 | if [[ "$CONFIGURATION" == "Release" ]]; then 149 | install_framework "${BUILT_PRODUCTS_DIR}/TanibleView/TanibleView.framework" 150 | fi 151 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 152 | wait 153 | fi 154 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then 7 | # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # resources to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 13 | 14 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 15 | > "$RESOURCES_TO_COPY" 16 | 17 | XCASSET_FILES=() 18 | 19 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 20 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 21 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 22 | 23 | case "${TARGETED_DEVICE_FAMILY:-}" in 24 | 1,2) 25 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 26 | ;; 27 | 1) 28 | TARGET_DEVICE_ARGS="--target-device iphone" 29 | ;; 30 | 2) 31 | TARGET_DEVICE_ARGS="--target-device ipad" 32 | ;; 33 | 3) 34 | TARGET_DEVICE_ARGS="--target-device tv" 35 | ;; 36 | 4) 37 | TARGET_DEVICE_ARGS="--target-device watch" 38 | ;; 39 | *) 40 | TARGET_DEVICE_ARGS="--target-device mac" 41 | ;; 42 | esac 43 | 44 | install_resource() 45 | { 46 | if [[ "$1" = /* ]] ; then 47 | RESOURCE_PATH="$1" 48 | else 49 | RESOURCE_PATH="${PODS_ROOT}/$1" 50 | fi 51 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 52 | cat << EOM 53 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 54 | EOM 55 | exit 1 56 | fi 57 | case $RESOURCE_PATH in 58 | *.storyboard) 59 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 60 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 61 | ;; 62 | *.xib) 63 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 64 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 65 | ;; 66 | *.framework) 67 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 68 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 69 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 70 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 71 | ;; 72 | *.xcdatamodel) 73 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 74 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 75 | ;; 76 | *.xcdatamodeld) 77 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 78 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 79 | ;; 80 | *.xcmappingmodel) 81 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 82 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 83 | ;; 84 | *.xcassets) 85 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 86 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 87 | ;; 88 | *) 89 | echo "$RESOURCE_PATH" || true 90 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 91 | ;; 92 | esac 93 | } 94 | 95 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 96 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 97 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 98 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 99 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 100 | fi 101 | rm -f "$RESOURCES_TO_COPY" 102 | 103 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] 104 | then 105 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 106 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 107 | while read line; do 108 | if [[ $line != "${PODS_ROOT}*" ]]; then 109 | XCASSET_FILES+=("$line") 110 | fi 111 | done <<<"$OTHER_XCASSETS" 112 | 113 | if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then 114 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 115 | else 116 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" 117 | fi 118 | fi 119 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_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_TanibleView_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_TanibleView_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TanibleView" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/TanibleView/TanibleView.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "TanibleView" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TanibleView_Example { 2 | umbrella header "Pods-TanibleView_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TanibleView" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/TanibleView/TanibleView.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "TanibleView" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_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-TanibleView_Tests/Pods-TanibleView_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-TanibleView_Tests/Pods-TanibleView_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-TanibleView_Tests/Pods-TanibleView_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TanibleView_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TanibleView_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 7 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # frameworks to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 14 | 15 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 16 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 17 | 18 | # Used as a return value for each invocation of `strip_invalid_archs` function. 19 | STRIP_BINARY_RETVAL=0 20 | 21 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 22 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 23 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 24 | 25 | # Copies and strips a vendored framework 26 | install_framework() 27 | { 28 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 29 | local source="${BUILT_PRODUCTS_DIR}/$1" 30 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 31 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 32 | elif [ -r "$1" ]; then 33 | local source="$1" 34 | fi 35 | 36 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 37 | 38 | if [ -L "${source}" ]; then 39 | echo "Symlinked..." 40 | source="$(readlink "${source}")" 41 | fi 42 | 43 | # Use filter instead of exclude so missing patterns don't throw errors. 44 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 45 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 46 | 47 | local basename 48 | basename="$(basename -s .framework "$1")" 49 | binary="${destination}/${basename}.framework/${basename}" 50 | if ! [ -r "$binary" ]; then 51 | binary="${destination}/${basename}" 52 | fi 53 | 54 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 55 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 56 | strip_invalid_archs "$binary" 57 | fi 58 | 59 | # Resign the code if required by the build settings to avoid unstable apps 60 | code_sign_if_enabled "${destination}/$(basename "$1")" 61 | 62 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 63 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 64 | local swift_runtime_libs 65 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 66 | for lib in $swift_runtime_libs; do 67 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 68 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 69 | code_sign_if_enabled "${destination}/${lib}" 70 | done 71 | fi 72 | } 73 | 74 | # Copies and strips a vendored dSYM 75 | install_dsym() { 76 | local source="$1" 77 | if [ -r "$source" ]; then 78 | # Copy the dSYM into a the targets temp dir. 79 | 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}\"" 80 | 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}" 81 | 82 | local basename 83 | basename="$(basename -s .framework.dSYM "$source")" 84 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 85 | 86 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 87 | if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then 88 | strip_invalid_archs "$binary" 89 | fi 90 | 91 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 92 | # Move the stripped file into its final destination. 93 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 94 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 95 | else 96 | # 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. 97 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 98 | fi 99 | fi 100 | } 101 | 102 | # Signs a framework with the provided identity 103 | code_sign_if_enabled() { 104 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 105 | # Use the current code_sign_identitiy 106 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 107 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 108 | 109 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 110 | code_sign_cmd="$code_sign_cmd &" 111 | fi 112 | echo "$code_sign_cmd" 113 | eval "$code_sign_cmd" 114 | fi 115 | } 116 | 117 | # Strip invalid architectures 118 | strip_invalid_archs() { 119 | binary="$1" 120 | # Get architectures for current target binary 121 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 122 | # Intersect them with the architectures we are building for 123 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 124 | # If there are no archs supported by this binary then warn the user 125 | if [[ -z "$intersected_archs" ]]; then 126 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 127 | STRIP_BINARY_RETVAL=0 128 | return 129 | fi 130 | stripped="" 131 | for arch in $binary_archs; do 132 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 133 | # Strip non-valid architectures in-place 134 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 135 | stripped="$stripped $arch" 136 | fi 137 | done 138 | if [[ "$stripped" ]]; then 139 | echo "Stripped $binary of architectures:$stripped" 140 | fi 141 | STRIP_BINARY_RETVAL=1 142 | } 143 | 144 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 145 | wait 146 | fi 147 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then 7 | # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # resources to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 13 | 14 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 15 | > "$RESOURCES_TO_COPY" 16 | 17 | XCASSET_FILES=() 18 | 19 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 20 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 21 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 22 | 23 | case "${TARGETED_DEVICE_FAMILY:-}" in 24 | 1,2) 25 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 26 | ;; 27 | 1) 28 | TARGET_DEVICE_ARGS="--target-device iphone" 29 | ;; 30 | 2) 31 | TARGET_DEVICE_ARGS="--target-device ipad" 32 | ;; 33 | 3) 34 | TARGET_DEVICE_ARGS="--target-device tv" 35 | ;; 36 | 4) 37 | TARGET_DEVICE_ARGS="--target-device watch" 38 | ;; 39 | *) 40 | TARGET_DEVICE_ARGS="--target-device mac" 41 | ;; 42 | esac 43 | 44 | install_resource() 45 | { 46 | if [[ "$1" = /* ]] ; then 47 | RESOURCE_PATH="$1" 48 | else 49 | RESOURCE_PATH="${PODS_ROOT}/$1" 50 | fi 51 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 52 | cat << EOM 53 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 54 | EOM 55 | exit 1 56 | fi 57 | case $RESOURCE_PATH in 58 | *.storyboard) 59 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 60 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 61 | ;; 62 | *.xib) 63 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 64 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 65 | ;; 66 | *.framework) 67 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 68 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 69 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 70 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 71 | ;; 72 | *.xcdatamodel) 73 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 74 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 75 | ;; 76 | *.xcdatamodeld) 77 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 78 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 79 | ;; 80 | *.xcmappingmodel) 81 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 82 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 83 | ;; 84 | *.xcassets) 85 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 86 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 87 | ;; 88 | *) 89 | echo "$RESOURCE_PATH" || true 90 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 91 | ;; 92 | esac 93 | } 94 | 95 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 96 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 97 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 98 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 99 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 100 | fi 101 | rm -f "$RESOURCES_TO_COPY" 102 | 103 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] 104 | then 105 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 106 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 107 | while read line; do 108 | if [[ $line != "${PODS_ROOT}*" ]]; then 109 | XCASSET_FILES+=("$line") 110 | fi 111 | done <<<"$OTHER_XCASSETS" 112 | 113 | if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then 114 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 115 | else 116 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" 117 | fi 118 | fi 119 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_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_TanibleView_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_TanibleView_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TanibleView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/TanibleView/TanibleView.framework/Headers" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TanibleView_Tests { 2 | umbrella header "Pods-TanibleView_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/TanibleView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/TanibleView/TanibleView.framework/Headers" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TanibleView/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/TanibleView/TanibleView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TanibleView : NSObject 3 | @end 4 | @implementation PodsDummy_TanibleView 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TanibleView/TanibleView-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/TanibleView/TanibleView-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 TanibleViewVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char TanibleViewVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TanibleView/TanibleView.modulemap: -------------------------------------------------------------------------------- 1 | framework module TanibleView { 2 | umbrella header "TanibleView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TanibleView/TanibleView.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/TanibleView 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Example/TanibleView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 11 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 12 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 13 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 14 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 15 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 16 | 6F4DCDA551ADFC050EA25326 /* Pods_TanibleView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6D71F6173CD8C64DC3110C90 /* Pods_TanibleView_Example.framework */; }; 17 | 8F77FB2CF26B9B5D8D6E8613 /* Pods_TanibleView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97EDC26FF935289D9EB775F7 /* Pods_TanibleView_Tests.framework */; }; 18 | ED728A22226AC10D00501EE9 /* TanibleViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED728A21226AC10C00501EE9 /* TanibleViewController.swift */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 27 | remoteInfo = TanibleView; 28 | }; 29 | /* End PBXContainerItemProxy section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 0C73324A288161CB6BE1851A /* TanibleView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = TanibleView.podspec; path = ../TanibleView.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 33 | 354CABCDA51DB711966C58D0 /* Pods-TanibleView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TanibleView_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example.release.xcconfig"; sourceTree = ""; }; 34 | 47A93631A5A21E89E57C048E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 35 | 5973AD6073ACADB79DFE2B06 /* Pods-TanibleView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TanibleView_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_Tests.debug.xcconfig"; sourceTree = ""; }; 36 | 607FACD01AFB9204008FA782 /* TanibleView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TanibleView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 38 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 39 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 40 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 41 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 42 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 43 | 607FACE51AFB9204008FA782 /* TanibleView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TanibleView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 46 | 6D71F6173CD8C64DC3110C90 /* Pods_TanibleView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TanibleView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | 97EDC26FF935289D9EB775F7 /* Pods_TanibleView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TanibleView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | B565DA1713628C891289F3DC /* Pods-TanibleView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TanibleView_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-TanibleView_Tests/Pods-TanibleView_Tests.release.xcconfig"; sourceTree = ""; }; 49 | C3709C78B822FD389A086E7A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 50 | ED728A21226AC10C00501EE9 /* TanibleViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TanibleViewController.swift; sourceTree = ""; }; 51 | FEBE43670802225D5AC99A0C /* Pods-TanibleView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TanibleView_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example.debug.xcconfig"; sourceTree = ""; }; 52 | /* End PBXFileReference section */ 53 | 54 | /* Begin PBXFrameworksBuildPhase section */ 55 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 56 | isa = PBXFrameworksBuildPhase; 57 | buildActionMask = 2147483647; 58 | files = ( 59 | 6F4DCDA551ADFC050EA25326 /* Pods_TanibleView_Example.framework in Frameworks */, 60 | ); 61 | runOnlyForDeploymentPostprocessing = 0; 62 | }; 63 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 64 | isa = PBXFrameworksBuildPhase; 65 | buildActionMask = 2147483647; 66 | files = ( 67 | 8F77FB2CF26B9B5D8D6E8613 /* Pods_TanibleView_Tests.framework in Frameworks */, 68 | ); 69 | runOnlyForDeploymentPostprocessing = 0; 70 | }; 71 | /* End PBXFrameworksBuildPhase section */ 72 | 73 | /* Begin PBXGroup section */ 74 | 607FACC71AFB9204008FA782 = { 75 | isa = PBXGroup; 76 | children = ( 77 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 78 | 607FACD21AFB9204008FA782 /* Example for TanibleView */, 79 | 607FACE81AFB9204008FA782 /* Tests */, 80 | 607FACD11AFB9204008FA782 /* Products */, 81 | ADACD4F742B8B89167A7DB4F /* Pods */, 82 | F58512F43F1680EA7BB45443 /* Frameworks */, 83 | ); 84 | sourceTree = ""; 85 | }; 86 | 607FACD11AFB9204008FA782 /* Products */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 607FACD01AFB9204008FA782 /* TanibleView_Example.app */, 90 | 607FACE51AFB9204008FA782 /* TanibleView_Tests.xctest */, 91 | ); 92 | name = Products; 93 | sourceTree = ""; 94 | }; 95 | 607FACD21AFB9204008FA782 /* Example for TanibleView */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 99 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 100 | ED728A21226AC10C00501EE9 /* TanibleViewController.swift */, 101 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 102 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 103 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 104 | 607FACD31AFB9204008FA782 /* Supporting Files */, 105 | ); 106 | name = "Example for TanibleView"; 107 | path = TanibleView; 108 | sourceTree = ""; 109 | }; 110 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 607FACD41AFB9204008FA782 /* Info.plist */, 114 | ); 115 | name = "Supporting Files"; 116 | sourceTree = ""; 117 | }; 118 | 607FACE81AFB9204008FA782 /* Tests */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 122 | 607FACE91AFB9204008FA782 /* Supporting Files */, 123 | ); 124 | path = Tests; 125 | sourceTree = ""; 126 | }; 127 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 128 | isa = PBXGroup; 129 | children = ( 130 | 607FACEA1AFB9204008FA782 /* Info.plist */, 131 | ); 132 | name = "Supporting Files"; 133 | sourceTree = ""; 134 | }; 135 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 0C73324A288161CB6BE1851A /* TanibleView.podspec */, 139 | C3709C78B822FD389A086E7A /* README.md */, 140 | 47A93631A5A21E89E57C048E /* LICENSE */, 141 | ); 142 | name = "Podspec Metadata"; 143 | sourceTree = ""; 144 | }; 145 | ADACD4F742B8B89167A7DB4F /* Pods */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | FEBE43670802225D5AC99A0C /* Pods-TanibleView_Example.debug.xcconfig */, 149 | 354CABCDA51DB711966C58D0 /* Pods-TanibleView_Example.release.xcconfig */, 150 | 5973AD6073ACADB79DFE2B06 /* Pods-TanibleView_Tests.debug.xcconfig */, 151 | B565DA1713628C891289F3DC /* Pods-TanibleView_Tests.release.xcconfig */, 152 | ); 153 | name = Pods; 154 | sourceTree = ""; 155 | }; 156 | F58512F43F1680EA7BB45443 /* Frameworks */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | 6D71F6173CD8C64DC3110C90 /* Pods_TanibleView_Example.framework */, 160 | 97EDC26FF935289D9EB775F7 /* Pods_TanibleView_Tests.framework */, 161 | ); 162 | name = Frameworks; 163 | sourceTree = ""; 164 | }; 165 | /* End PBXGroup section */ 166 | 167 | /* Begin PBXNativeTarget section */ 168 | 607FACCF1AFB9204008FA782 /* TanibleView_Example */ = { 169 | isa = PBXNativeTarget; 170 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TanibleView_Example" */; 171 | buildPhases = ( 172 | FF5934F0EE1752E1E9C4F297 /* [CP] Check Pods Manifest.lock */, 173 | 607FACCC1AFB9204008FA782 /* Sources */, 174 | 607FACCD1AFB9204008FA782 /* Frameworks */, 175 | 607FACCE1AFB9204008FA782 /* Resources */, 176 | 86BB7EE3D72405690071A161 /* [CP] Embed Pods Frameworks */, 177 | ); 178 | buildRules = ( 179 | ); 180 | dependencies = ( 181 | ); 182 | name = TanibleView_Example; 183 | productName = TanibleView; 184 | productReference = 607FACD01AFB9204008FA782 /* TanibleView_Example.app */; 185 | productType = "com.apple.product-type.application"; 186 | }; 187 | 607FACE41AFB9204008FA782 /* TanibleView_Tests */ = { 188 | isa = PBXNativeTarget; 189 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TanibleView_Tests" */; 190 | buildPhases = ( 191 | C780AB714FBC11E2338A7FFF /* [CP] Check Pods Manifest.lock */, 192 | 607FACE11AFB9204008FA782 /* Sources */, 193 | 607FACE21AFB9204008FA782 /* Frameworks */, 194 | 607FACE31AFB9204008FA782 /* Resources */, 195 | ); 196 | buildRules = ( 197 | ); 198 | dependencies = ( 199 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 200 | ); 201 | name = TanibleView_Tests; 202 | productName = Tests; 203 | productReference = 607FACE51AFB9204008FA782 /* TanibleView_Tests.xctest */; 204 | productType = "com.apple.product-type.bundle.unit-test"; 205 | }; 206 | /* End PBXNativeTarget section */ 207 | 208 | /* Begin PBXProject section */ 209 | 607FACC81AFB9204008FA782 /* Project object */ = { 210 | isa = PBXProject; 211 | attributes = { 212 | LastSwiftUpdateCheck = 0830; 213 | LastUpgradeCheck = 0830; 214 | ORGANIZATIONNAME = CocoaPods; 215 | TargetAttributes = { 216 | 607FACCF1AFB9204008FA782 = { 217 | CreatedOnToolsVersion = 6.3.1; 218 | LastSwiftMigration = 0900; 219 | ProvisioningStyle = Automatic; 220 | }; 221 | 607FACE41AFB9204008FA782 = { 222 | CreatedOnToolsVersion = 6.3.1; 223 | LastSwiftMigration = 0900; 224 | TestTargetID = 607FACCF1AFB9204008FA782; 225 | }; 226 | }; 227 | }; 228 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "TanibleView" */; 229 | compatibilityVersion = "Xcode 3.2"; 230 | developmentRegion = English; 231 | hasScannedForEncodings = 0; 232 | knownRegions = ( 233 | English, 234 | en, 235 | Base, 236 | ); 237 | mainGroup = 607FACC71AFB9204008FA782; 238 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 239 | projectDirPath = ""; 240 | projectRoot = ""; 241 | targets = ( 242 | 607FACCF1AFB9204008FA782 /* TanibleView_Example */, 243 | 607FACE41AFB9204008FA782 /* TanibleView_Tests */, 244 | ); 245 | }; 246 | /* End PBXProject section */ 247 | 248 | /* Begin PBXResourcesBuildPhase section */ 249 | 607FACCE1AFB9204008FA782 /* Resources */ = { 250 | isa = PBXResourcesBuildPhase; 251 | buildActionMask = 2147483647; 252 | files = ( 253 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 254 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 255 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 256 | ); 257 | runOnlyForDeploymentPostprocessing = 0; 258 | }; 259 | 607FACE31AFB9204008FA782 /* Resources */ = { 260 | isa = PBXResourcesBuildPhase; 261 | buildActionMask = 2147483647; 262 | files = ( 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | }; 266 | /* End PBXResourcesBuildPhase section */ 267 | 268 | /* Begin PBXShellScriptBuildPhase section */ 269 | 86BB7EE3D72405690071A161 /* [CP] Embed Pods Frameworks */ = { 270 | isa = PBXShellScriptBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | ); 274 | inputPaths = ( 275 | "${SRCROOT}/Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example-frameworks.sh", 276 | "${BUILT_PRODUCTS_DIR}/TanibleView/TanibleView.framework", 277 | ); 278 | name = "[CP] Embed Pods Frameworks"; 279 | outputPaths = ( 280 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/TanibleView.framework", 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | shellPath = /bin/sh; 284 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TanibleView_Example/Pods-TanibleView_Example-frameworks.sh\"\n"; 285 | showEnvVarsInLog = 0; 286 | }; 287 | C780AB714FBC11E2338A7FFF /* [CP] Check Pods Manifest.lock */ = { 288 | isa = PBXShellScriptBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | ); 292 | inputPaths = ( 293 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 294 | "${PODS_ROOT}/Manifest.lock", 295 | ); 296 | name = "[CP] Check Pods Manifest.lock"; 297 | outputPaths = ( 298 | "$(DERIVED_FILE_DIR)/Pods-TanibleView_Tests-checkManifestLockResult.txt", 299 | ); 300 | runOnlyForDeploymentPostprocessing = 0; 301 | shellPath = /bin/sh; 302 | 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"; 303 | showEnvVarsInLog = 0; 304 | }; 305 | FF5934F0EE1752E1E9C4F297 /* [CP] Check Pods Manifest.lock */ = { 306 | isa = PBXShellScriptBuildPhase; 307 | buildActionMask = 2147483647; 308 | files = ( 309 | ); 310 | inputPaths = ( 311 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 312 | "${PODS_ROOT}/Manifest.lock", 313 | ); 314 | name = "[CP] Check Pods Manifest.lock"; 315 | outputPaths = ( 316 | "$(DERIVED_FILE_DIR)/Pods-TanibleView_Example-checkManifestLockResult.txt", 317 | ); 318 | runOnlyForDeploymentPostprocessing = 0; 319 | shellPath = /bin/sh; 320 | 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"; 321 | showEnvVarsInLog = 0; 322 | }; 323 | /* End PBXShellScriptBuildPhase section */ 324 | 325 | /* Begin PBXSourcesBuildPhase section */ 326 | 607FACCC1AFB9204008FA782 /* Sources */ = { 327 | isa = PBXSourcesBuildPhase; 328 | buildActionMask = 2147483647; 329 | files = ( 330 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 331 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 332 | ED728A22226AC10D00501EE9 /* TanibleViewController.swift in Sources */, 333 | ); 334 | runOnlyForDeploymentPostprocessing = 0; 335 | }; 336 | 607FACE11AFB9204008FA782 /* Sources */ = { 337 | isa = PBXSourcesBuildPhase; 338 | buildActionMask = 2147483647; 339 | files = ( 340 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 341 | ); 342 | runOnlyForDeploymentPostprocessing = 0; 343 | }; 344 | /* End PBXSourcesBuildPhase section */ 345 | 346 | /* Begin PBXTargetDependency section */ 347 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 348 | isa = PBXTargetDependency; 349 | target = 607FACCF1AFB9204008FA782 /* TanibleView_Example */; 350 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 351 | }; 352 | /* End PBXTargetDependency section */ 353 | 354 | /* Begin PBXVariantGroup section */ 355 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 356 | isa = PBXVariantGroup; 357 | children = ( 358 | 607FACDA1AFB9204008FA782 /* Base */, 359 | ); 360 | name = Main.storyboard; 361 | sourceTree = ""; 362 | }; 363 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 364 | isa = PBXVariantGroup; 365 | children = ( 366 | 607FACDF1AFB9204008FA782 /* Base */, 367 | ); 368 | name = LaunchScreen.xib; 369 | sourceTree = ""; 370 | }; 371 | /* End PBXVariantGroup section */ 372 | 373 | /* Begin XCBuildConfiguration section */ 374 | 607FACED1AFB9204008FA782 /* Debug */ = { 375 | isa = XCBuildConfiguration; 376 | buildSettings = { 377 | ALWAYS_SEARCH_USER_PATHS = NO; 378 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 379 | CLANG_CXX_LIBRARY = "libc++"; 380 | CLANG_ENABLE_MODULES = YES; 381 | CLANG_ENABLE_OBJC_ARC = YES; 382 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 383 | CLANG_WARN_BOOL_CONVERSION = YES; 384 | CLANG_WARN_COMMA = YES; 385 | CLANG_WARN_CONSTANT_CONVERSION = YES; 386 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 387 | CLANG_WARN_EMPTY_BODY = YES; 388 | CLANG_WARN_ENUM_CONVERSION = YES; 389 | CLANG_WARN_INFINITE_RECURSION = YES; 390 | CLANG_WARN_INT_CONVERSION = YES; 391 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 392 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 393 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 394 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 395 | CLANG_WARN_STRICT_PROTOTYPES = YES; 396 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 397 | CLANG_WARN_UNREACHABLE_CODE = YES; 398 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 399 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 400 | COPY_PHASE_STRIP = NO; 401 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 402 | ENABLE_STRICT_OBJC_MSGSEND = YES; 403 | ENABLE_TESTABILITY = YES; 404 | GCC_C_LANGUAGE_STANDARD = gnu99; 405 | GCC_DYNAMIC_NO_PIC = NO; 406 | GCC_NO_COMMON_BLOCKS = YES; 407 | GCC_OPTIMIZATION_LEVEL = 0; 408 | GCC_PREPROCESSOR_DEFINITIONS = ( 409 | "DEBUG=1", 410 | "$(inherited)", 411 | ); 412 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 413 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 414 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 415 | GCC_WARN_UNDECLARED_SELECTOR = YES; 416 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 417 | GCC_WARN_UNUSED_FUNCTION = YES; 418 | GCC_WARN_UNUSED_VARIABLE = YES; 419 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 420 | MTL_ENABLE_DEBUG_INFO = YES; 421 | ONLY_ACTIVE_ARCH = YES; 422 | SDKROOT = iphoneos; 423 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 424 | }; 425 | name = Debug; 426 | }; 427 | 607FACEE1AFB9204008FA782 /* Release */ = { 428 | isa = XCBuildConfiguration; 429 | buildSettings = { 430 | ALWAYS_SEARCH_USER_PATHS = NO; 431 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 432 | CLANG_CXX_LIBRARY = "libc++"; 433 | CLANG_ENABLE_MODULES = YES; 434 | CLANG_ENABLE_OBJC_ARC = YES; 435 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 436 | CLANG_WARN_BOOL_CONVERSION = YES; 437 | CLANG_WARN_COMMA = YES; 438 | CLANG_WARN_CONSTANT_CONVERSION = YES; 439 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 440 | CLANG_WARN_EMPTY_BODY = YES; 441 | CLANG_WARN_ENUM_CONVERSION = YES; 442 | CLANG_WARN_INFINITE_RECURSION = YES; 443 | CLANG_WARN_INT_CONVERSION = YES; 444 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 445 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 446 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 447 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 448 | CLANG_WARN_STRICT_PROTOTYPES = YES; 449 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 450 | CLANG_WARN_UNREACHABLE_CODE = YES; 451 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 452 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 453 | COPY_PHASE_STRIP = NO; 454 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 455 | ENABLE_NS_ASSERTIONS = NO; 456 | ENABLE_STRICT_OBJC_MSGSEND = YES; 457 | GCC_C_LANGUAGE_STANDARD = gnu99; 458 | GCC_NO_COMMON_BLOCKS = YES; 459 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 460 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 461 | GCC_WARN_UNDECLARED_SELECTOR = YES; 462 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 463 | GCC_WARN_UNUSED_FUNCTION = YES; 464 | GCC_WARN_UNUSED_VARIABLE = YES; 465 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 466 | MTL_ENABLE_DEBUG_INFO = NO; 467 | SDKROOT = iphoneos; 468 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 469 | VALIDATE_PRODUCT = YES; 470 | }; 471 | name = Release; 472 | }; 473 | 607FACF01AFB9204008FA782 /* Debug */ = { 474 | isa = XCBuildConfiguration; 475 | baseConfigurationReference = FEBE43670802225D5AC99A0C /* Pods-TanibleView_Example.debug.xcconfig */; 476 | buildSettings = { 477 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 478 | CODE_SIGN_IDENTITY = "iPhone Developer"; 479 | CODE_SIGN_STYLE = Automatic; 480 | DEVELOPMENT_TEAM = ""; 481 | INFOPLIST_FILE = TanibleView/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 | PROVISIONING_PROFILE_SPECIFIER = ""; 487 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 488 | SWIFT_VERSION = 4.0; 489 | }; 490 | name = Debug; 491 | }; 492 | 607FACF11AFB9204008FA782 /* Release */ = { 493 | isa = XCBuildConfiguration; 494 | baseConfigurationReference = 354CABCDA51DB711966C58D0 /* Pods-TanibleView_Example.release.xcconfig */; 495 | buildSettings = { 496 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 497 | CODE_SIGN_IDENTITY = "iPhone Developer"; 498 | CODE_SIGN_STYLE = Automatic; 499 | DEVELOPMENT_TEAM = ""; 500 | INFOPLIST_FILE = TanibleView/Info.plist; 501 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 502 | MODULE_NAME = ExampleApp; 503 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 504 | PRODUCT_NAME = "$(TARGET_NAME)"; 505 | PROVISIONING_PROFILE_SPECIFIER = ""; 506 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 507 | SWIFT_VERSION = 4.0; 508 | }; 509 | name = Release; 510 | }; 511 | 607FACF31AFB9204008FA782 /* Debug */ = { 512 | isa = XCBuildConfiguration; 513 | baseConfigurationReference = 5973AD6073ACADB79DFE2B06 /* Pods-TanibleView_Tests.debug.xcconfig */; 514 | buildSettings = { 515 | FRAMEWORK_SEARCH_PATHS = ( 516 | "$(SDKROOT)/Developer/Library/Frameworks", 517 | "$(inherited)", 518 | ); 519 | GCC_PREPROCESSOR_DEFINITIONS = ( 520 | "DEBUG=1", 521 | "$(inherited)", 522 | ); 523 | INFOPLIST_FILE = Tests/Info.plist; 524 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 525 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 526 | PRODUCT_NAME = "$(TARGET_NAME)"; 527 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 528 | SWIFT_VERSION = 4.0; 529 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TanibleView_Example.app/TanibleView_Example"; 530 | }; 531 | name = Debug; 532 | }; 533 | 607FACF41AFB9204008FA782 /* Release */ = { 534 | isa = XCBuildConfiguration; 535 | baseConfigurationReference = B565DA1713628C891289F3DC /* Pods-TanibleView_Tests.release.xcconfig */; 536 | buildSettings = { 537 | FRAMEWORK_SEARCH_PATHS = ( 538 | "$(SDKROOT)/Developer/Library/Frameworks", 539 | "$(inherited)", 540 | ); 541 | INFOPLIST_FILE = Tests/Info.plist; 542 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 543 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 544 | PRODUCT_NAME = "$(TARGET_NAME)"; 545 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 546 | SWIFT_VERSION = 4.0; 547 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TanibleView_Example.app/TanibleView_Example"; 548 | }; 549 | name = Release; 550 | }; 551 | /* End XCBuildConfiguration section */ 552 | 553 | /* Begin XCConfigurationList section */ 554 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "TanibleView" */ = { 555 | isa = XCConfigurationList; 556 | buildConfigurations = ( 557 | 607FACED1AFB9204008FA782 /* Debug */, 558 | 607FACEE1AFB9204008FA782 /* Release */, 559 | ); 560 | defaultConfigurationIsVisible = 0; 561 | defaultConfigurationName = Release; 562 | }; 563 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TanibleView_Example" */ = { 564 | isa = XCConfigurationList; 565 | buildConfigurations = ( 566 | 607FACF01AFB9204008FA782 /* Debug */, 567 | 607FACF11AFB9204008FA782 /* Release */, 568 | ); 569 | defaultConfigurationIsVisible = 0; 570 | defaultConfigurationName = Release; 571 | }; 572 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TanibleView_Tests" */ = { 573 | isa = XCConfigurationList; 574 | buildConfigurations = ( 575 | 607FACF31AFB9204008FA782 /* Debug */, 576 | 607FACF41AFB9204008FA782 /* Release */, 577 | ); 578 | defaultConfigurationIsVisible = 0; 579 | defaultConfigurationName = Release; 580 | }; 581 | /* End XCConfigurationList section */ 582 | }; 583 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 584 | } 585 | -------------------------------------------------------------------------------- /Example/TanibleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/TanibleView.xcodeproj/xcshareddata/xcschemes/TanibleView-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/TanibleView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/TanibleView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/TanibleView/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // TanibleView 4 | // 5 | // Created by dokgi1988 on 03/28/2019. 6 | // Copyright (c) 2019 dokgi1988. 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/TanibleView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /Example/TanibleView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /Example/TanibleView/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 | "size" : "29x29", 15 | "idiom" : "iphone", 16 | "filename" : "icSmall@2x.png", 17 | "scale" : "2x" 18 | }, 19 | { 20 | "size" : "29x29", 21 | "idiom" : "iphone", 22 | "filename" : "icSmall@3x.png", 23 | "scale" : "3x" 24 | }, 25 | { 26 | "size" : "40x40", 27 | "idiom" : "iphone", 28 | "filename" : "icMedium@2x.png", 29 | "scale" : "2x" 30 | }, 31 | { 32 | "size" : "40x40", 33 | "idiom" : "iphone", 34 | "filename" : "icMedium@3x.png", 35 | "scale" : "3x" 36 | }, 37 | { 38 | "size" : "60x60", 39 | "idiom" : "iphone", 40 | "filename" : "icLarge@2x.png", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "size" : "60x60", 45 | "idiom" : "iphone", 46 | "filename" : "icLarge@3x.png", 47 | "scale" : "3x" 48 | }, 49 | { 50 | "idiom" : "ios-marketing", 51 | "size" : "1024x1024", 52 | "scale" : "1x" 53 | } 54 | ], 55 | "info" : { 56 | "version" : 1, 57 | "author" : "xcode" 58 | } 59 | } -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/AppIcon.appiconset/icLarge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/Example/TanibleView/Images.xcassets/AppIcon.appiconset/icLarge@2x.png -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/AppIcon.appiconset/icLarge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/Example/TanibleView/Images.xcassets/AppIcon.appiconset/icLarge@3x.png -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/AppIcon.appiconset/icMedium@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/Example/TanibleView/Images.xcassets/AppIcon.appiconset/icMedium@2x.png -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/AppIcon.appiconset/icMedium@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/Example/TanibleView/Images.xcassets/AppIcon.appiconset/icMedium@3x.png -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/AppIcon.appiconset/icSmall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/Example/TanibleView/Images.xcassets/AppIcon.appiconset/icSmall@2x.png -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/AppIcon.appiconset/icSmall@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/Example/TanibleView/Images.xcassets/AppIcon.appiconset/icSmall@3x.png -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/imgLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "imgLogo.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "imgLogo@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "imgLogo@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/imgLogo.imageset/imgLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/Example/TanibleView/Images.xcassets/imgLogo.imageset/imgLogo.png -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/imgLogo.imageset/imgLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/Example/TanibleView/Images.xcassets/imgLogo.imageset/imgLogo@2x.png -------------------------------------------------------------------------------- /Example/TanibleView/Images.xcassets/imgLogo.imageset/imgLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/Example/TanibleView/Images.xcassets/imgLogo.imageset/imgLogo@3x.png -------------------------------------------------------------------------------- /Example/TanibleView/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | TanibleView 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIMainStoryboardFile 30 | Main 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Example/TanibleView/TanibleViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TanibleViewController.swift 3 | // TanibleView_Example 4 | // 5 | // Created by soom on 20/04/2019. 6 | // Copyright © 2019 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import TanibleView 11 | 12 | class TanibleViewController: UIViewController { 13 | 14 | private let tableView: TanibleView = { 15 | let view = TanibleView() 16 | view.translatesAutoresizingMaskIntoConstraints = false 17 | view.tableFooterView = UIView() 18 | view.register(UITableViewCell.self, forCellReuseIdentifier: "cell") 19 | return view 20 | }() 21 | 22 | init(direction: TanibleViewDirection) { 23 | tableView.direction = direction 24 | super.init(nibName: nil, bundle: nil) 25 | title = "\(direction)" 26 | view.backgroundColor = .white 27 | } 28 | 29 | required init?(coder aDecoder: NSCoder) { 30 | fatalError() 31 | } 32 | 33 | override func viewDidLoad() { 34 | super.viewDidLoad() 35 | 36 | tableView.dataSource = self 37 | 38 | view.addSubview(tableView) 39 | 40 | tableView.topAnchor.constraint(equalTo: topLayoutGuide.bottomAnchor).isActive = true 41 | tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true 42 | tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true 43 | tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true 44 | } 45 | 46 | } 47 | 48 | extension TanibleViewController: UITableViewDataSource { 49 | 50 | func numberOfSections(in tableView: UITableView) -> Int { 51 | return 1 52 | } 53 | 54 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 55 | return 10 56 | } 57 | 58 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 59 | let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) 60 | cell.textLabel?.text = "\(indexPath.row)" 61 | return cell 62 | } 63 | 64 | } 65 | -------------------------------------------------------------------------------- /Example/TanibleView/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // TanibleView 4 | // 5 | // Created by dokgi1988 on 03/28/2019. 6 | // Copyright (c) 2019 dokgi1988. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import TanibleView 11 | 12 | class ViewController: UIViewController { 13 | 14 | private enum TanibleViewDirections: String, CaseIterable { 15 | case top 16 | case left 17 | case right 18 | case bottom 19 | case inPlaceFadeIn 20 | case inPlaceFadeInTop 21 | case inPlaceFadeInBottom 22 | 23 | var direction: TanibleViewDirection { 24 | switch self { 25 | case .top: 26 | return TanibleViewDirection.top 27 | case .left: 28 | return TanibleViewDirection.left 29 | case .right: 30 | return TanibleViewDirection.right 31 | case .bottom: 32 | return TanibleViewDirection.bottom 33 | case .inPlaceFadeIn: 34 | return TanibleViewDirection.inPlaceFadeIn 35 | case .inPlaceFadeInTop: 36 | return TanibleViewDirection.inPlaceFadeInTop 37 | case .inPlaceFadeInBottom: 38 | return TanibleViewDirection.inPlaceFadeInBottom 39 | } 40 | } 41 | } 42 | private var tanibleViewDirection: [TanibleViewDirection] { 43 | return TanibleViewDirections.allCases.map{$0.direction} 44 | } 45 | private var tanibleViewDirectionTitles: [String] { 46 | return TanibleViewDirections.allCases.map{$0.rawValue} 47 | } 48 | 49 | private let tableView: TanibleView = { 50 | let view = TanibleView() 51 | view.translatesAutoresizingMaskIntoConstraints = false 52 | view.isEnabled = false 53 | view.tableFooterView = UIView() 54 | view.register(UITableViewCell.self, forCellReuseIdentifier: "cell") 55 | return view 56 | }() 57 | 58 | override func viewDidLoad() { 59 | super.viewDidLoad() 60 | 61 | tableView.dataSource = self 62 | tableView.delegate = self 63 | 64 | view.addSubview(tableView) 65 | 66 | tableView.topAnchor.constraint(equalTo: topLayoutGuide.bottomAnchor).isActive = true 67 | tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true 68 | tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true 69 | tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true 70 | } 71 | 72 | } 73 | 74 | extension ViewController: UITableViewDataSource { 75 | 76 | func numberOfSections(in tableView: UITableView) -> Int { 77 | return 1 78 | } 79 | 80 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 81 | return tanibleViewDirectionTitles.count 82 | } 83 | 84 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 85 | let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) 86 | cell.textLabel?.text = tanibleViewDirectionTitles[indexPath.row] 87 | return cell 88 | } 89 | 90 | } 91 | 92 | extension ViewController: UITableViewDelegate { 93 | 94 | func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 95 | tableView.deselectRow(at: indexPath, animated: true) 96 | 97 | let direction = tanibleViewDirection[indexPath.row] 98 | showTanibleViewController(direction: direction) 99 | } 100 | 101 | private func showTanibleViewController(direction: TanibleViewDirection) { 102 | let controller = TanibleViewController(direction: direction) 103 | show(controller, sender: nil) 104 | } 105 | 106 | } 107 | -------------------------------------------------------------------------------- /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 | 3 | class Tests: XCTestCase { 4 | 5 | override func setUp() { 6 | super.setUp() 7 | // Put setup code here. This method is called before the invocation of each test method in the class. 8 | } 9 | 10 | override func tearDown() { 11 | // Put teardown code here. This method is called after the invocation of each test method in the class. 12 | super.tearDown() 13 | } 14 | 15 | func testExample() { 16 | // This is an example of a functional test case. 17 | XCTAssert(true, "Pass") 18 | } 19 | 20 | func testPerformanceExample() { 21 | // This is an example of a performance test case. 22 | self.measure() { 23 | // Put the code you want to measure the time of here. 24 | } 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 dokgi1988 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 | ![imgTitleLogo](https://github.com/dokgi88/dokgi88.github.io/blob/master/_images/TanibleView/imgTitleLogo.png?raw=true) 2 | _

Designed by [yoon](https://www.behance.net/dusqkq02639)

_ 3 | - 4 |
5 | 6 | # TanibleView 7 | 8 | ![Swift](https://img.shields.io/badge/Swift-5.0-FA7343.svg?&style=flat-square&logo=Swift&logoColor=white) 9 | ![Platform](https://img.shields.io/badge/Platform-iOS-000000.svg?&style=flat-square&logo=iOS&logoColor=white) 10 | [![License](https://img.shields.io/badge/license-MIT-green.svg?&style=flat-square)](https://github.com/dokgi88/TanibleView/blob/master/LICENSE) 11 | 12 | | top | left | right | bottom | 13 | |:---:|:---:|:---:|:---:| 14 | | ![top.gif](https://github.com/dokgi88/dokgi88.github.io/blob/master/_images/TanibleView/top.gif?raw=true) | ![left.gif](https://github.com/dokgi88/dokgi88.github.io/blob/master/_images/TanibleView/left.gif?raw=true) | ![right.gif](https://github.com/dokgi88/dokgi88.github.io/blob/master/_images/TanibleView/right.gif?raw=true) | ![bottom.gif](https://github.com/dokgi88/dokgi88.github.io/blob/master/_images/TanibleView/bottom.gif?raw=true) | 15 | 16 | | inPlaceFadeIn | inPlaceFadeInTop | inPlaceFadeInBottom | 17 | |:---:|:---:|:---:| 18 | | ![inPlaceFadeIn.gif](https://github.com/dokgi88/dokgi88.github.io/blob/master/_images/TanibleView/inPlaceFadeIn.gif?raw=true) | ![inPlaceFadeInTop.gif](https://github.com/dokgi88/dokgi88.github.io/blob/master/_images/TanibleView/inPlaceFadeInTop.gif?raw=true) | ![inPlaceFadeInBottom.gif](https://github.com/dokgi88/dokgi88.github.io/blob/master/_images/TanibleView/inPlaceFadeInBottom.gif?raw=true) | 19 | 20 | ## Install 21 | 22 | ```swift 23 | pod 'TanibleView' 24 | ``` 25 | 26 | ## Example 27 | 28 | * How to reload 29 | ```swift 30 | /* 31 | * If you want to change direction -> tableView.direction = .bottom 32 | * call reload after changing direction 33 | */ 34 | tableView.reload() 35 | ``` 36 | 37 | * Set animation direction 38 | ```swift 39 | /* 40 | * default direction top 41 | * .bottom, .inPlaceFadeIn, etc... 42 | */ 43 | let tableView = TanibleView() 44 | tableView.direction = .bottom 45 | ``` 46 | 47 | * Set Enabled 48 | ```swift 49 | // default true 50 | tableView.isEnabled = false 51 | ``` 52 | 53 | * And other settings 54 | ```swift 55 | tableView.duration = 1.6 56 | tableView.delay = 0.06 57 | tableView.springDamping = 0.6 58 | tableView.springValocity = 0.1 59 | ``` 60 | 61 | ## License 62 | 63 | TanibleView is available under the MIT license. See the LICENSE file for more info. 64 | -------------------------------------------------------------------------------- /TanibleView.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint TanibleView.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 = 'TanibleView' 11 | s.version = '1.1.0' 12 | s.summary = 'Very simple animate TableView.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | TODO: Add long description of the pod here. 22 | DESC 23 | 24 | s.homepage = 'https://github.com/dokgi88/TanibleView' 25 | s.screenshots = 'https://github.com/dokgi88/dokgi88.github.io/blob/master/_images/TanibleView/imgTitleLogo.png?raw=true' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'dokgi88' => 'dokgi88@gmail.com' } 28 | s.source = { :git => 'https://github.com/dokgi88/TanibleView.git', :tag => s.version.to_s } 29 | 30 | s.swift_versions = '5.0' 31 | s.ios.deployment_target = '9.0' 32 | 33 | s.source_files = 'TanibleView/Classes/**/*' 34 | end 35 | -------------------------------------------------------------------------------- /TanibleView/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/TanibleView/Assets/.gitkeep -------------------------------------------------------------------------------- /TanibleView/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokgi88/TanibleView/c9d91bb447642b3991ed3670d49ca9b8e545f14e/TanibleView/Classes/.gitkeep -------------------------------------------------------------------------------- /TanibleView/Classes/TanibleView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TanibleView.swift 3 | // TanibleView 4 | // 5 | // Created by soom on 17/04/2019. 6 | // 7 | 8 | public class TanibleView: UITableView { 9 | 10 | // MARK: - Properties 11 | 12 | public var direction: TanibleViewDirection = .top 13 | public var duration: TimeInterval = 1.6 14 | public var delay: TimeInterval = 0.06 15 | public var springDamping: CGFloat = 0.6 16 | public var springValocity: CGFloat = 0.1 17 | public var isEnabled: Bool = true 18 | public var isFadeIn: Bool = false 19 | 20 | // MARK: - Con(De)structor 21 | 22 | convenience init() { 23 | self.init(frame: .zero) 24 | 25 | alpha = 0 26 | } 27 | 28 | // MARK: - Overridden: UITableView 29 | 30 | override public func draw(_ rect: CGRect) { 31 | super.draw(rect) 32 | 33 | animatable() 34 | } 35 | 36 | public func animatable(_ animationDirection: TanibleViewDirection? = nil) { 37 | if let direction = animationDirection { 38 | self.direction = direction 39 | } 40 | 41 | alpha = 1 42 | guard isEnabled else {return} 43 | reloadData() 44 | 45 | let cells = visibleCells 46 | var translationX: CGFloat = 0 47 | var translationY: CGFloat = 0 48 | 49 | switch direction { 50 | case .top: 51 | translationY = bounds.size.height 52 | case .left: 53 | translationX = -bounds.size.width 54 | case .right: 55 | translationX = bounds.size.width 56 | case .bottom: 57 | translationY = -bounds.size.height 58 | case .inPlaceFadeIn: 59 | isFadeIn = true 60 | duration = 3 61 | delay = 0.16 62 | default: 63 | isFadeIn = true 64 | } 65 | 66 | guard direction != .bottom, direction != .inPlaceFadeInBottom else { 67 | for (cell, index) in zip(cells, (0..