├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── TZConfettiIntro.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-TZConfettiIntro_Example │ │ ├── Info.plist │ │ ├── Pods-TZConfettiIntro_Example-acknowledgements.markdown │ │ ├── Pods-TZConfettiIntro_Example-acknowledgements.plist │ │ ├── Pods-TZConfettiIntro_Example-dummy.m │ │ ├── Pods-TZConfettiIntro_Example-frameworks.sh │ │ ├── Pods-TZConfettiIntro_Example-resources.sh │ │ ├── Pods-TZConfettiIntro_Example-umbrella.h │ │ ├── Pods-TZConfettiIntro_Example.debug.xcconfig │ │ ├── Pods-TZConfettiIntro_Example.modulemap │ │ └── Pods-TZConfettiIntro_Example.release.xcconfig │ │ ├── Pods-TZConfettiIntro_Tests │ │ ├── Info.plist │ │ ├── Pods-TZConfettiIntro_Tests-acknowledgements.markdown │ │ ├── Pods-TZConfettiIntro_Tests-acknowledgements.plist │ │ ├── Pods-TZConfettiIntro_Tests-dummy.m │ │ ├── Pods-TZConfettiIntro_Tests-frameworks.sh │ │ ├── Pods-TZConfettiIntro_Tests-resources.sh │ │ ├── Pods-TZConfettiIntro_Tests-umbrella.h │ │ ├── Pods-TZConfettiIntro_Tests.debug.xcconfig │ │ ├── Pods-TZConfettiIntro_Tests.modulemap │ │ └── Pods-TZConfettiIntro_Tests.release.xcconfig │ │ └── TZConfettiIntro │ │ ├── Info.plist │ │ ├── ResourceBundle-TZConfettiIntro-Info.plist │ │ ├── TZConfettiIntro-dummy.m │ │ ├── TZConfettiIntro-prefix.pch │ │ ├── TZConfettiIntro-umbrella.h │ │ ├── TZConfettiIntro.modulemap │ │ └── TZConfettiIntro.xcconfig ├── TZConfettiIntro.gif ├── TZConfettiIntro.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TZConfettiIntro-Example.xcscheme ├── TZConfettiIntro.xcworkspace │ └── contents.xcworkspacedata ├── TZConfettiIntro │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CustomPageView.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── NewFeatureIntroViewController.swift │ └── ViewController.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── TZConfettiIntro.podspec ├── TZConfettiIntro ├── Assets │ ├── .gitkeep │ ├── CIPageView.xib │ ├── TZConfettiIntroViewController.xib │ ├── confetti.png │ ├── diamond.png │ ├── star.png │ └── triangle.png └── Classes │ ├── .gitkeep │ ├── CIPageView.swift │ ├── SAConfettiView.swift │ └── TZConfettiIntroViewController.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 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -workspace Example/TZConfettiIntro.xcworkspace -scheme TZConfettiIntro-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'TZConfettiIntro_Example' do 4 | pod 'TZConfettiIntro', :path => '../' 5 | 6 | target 'TZConfettiIntro_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TZConfettiIntro (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TZConfettiIntro (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TZConfettiIntro: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | TZConfettiIntro: 72b2ca95b4e50e6b4204ba788deb150f1d82e8a5 13 | 14 | PODFILE CHECKSUM: 56218b11b0293935e971f768972a42c8557a59bf 15 | 16 | COCOAPODS: 1.1.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/TZConfettiIntro.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TZConfettiIntro", 3 | "version": "0.1.0", 4 | "summary": "A short description of TZConfettiIntro.", 5 | "description": "A Simple Intro View Controller with confetti animation. Thanks to Sudeep Agarwal, I didn't have to write code for generating confetti. I used his library (SAConfettiView) in my project", 6 | "homepage": "https://github.com/tahseen0amin/TZConfettiIntro", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "Taseen": "tahseen0amin@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/tahseen0amin/TZConfettiIntro.git", 16 | "tag": "0.1.0" 17 | }, 18 | "social_media_url": "https://twitter.com/taseenAmin", 19 | "platforms": { 20 | "ios": "8.0" 21 | }, 22 | "source_files": "TZConfettiIntro/Classes/**/*", 23 | "resource_bundles": { 24 | "TZConfettiIntro": [ 25 | "TZConfettiIntro/Assets/*.png", 26 | "TZConfettiIntro/Assets/*.xib" 27 | ] 28 | }, 29 | "frameworks": [ 30 | "UIKit", 31 | "QuartzCore" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - TZConfettiIntro (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - TZConfettiIntro (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | TZConfettiIntro: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | TZConfettiIntro: 72b2ca95b4e50e6b4204ba788deb150f1d82e8a5 13 | 14 | PODFILE CHECKSUM: 56218b11b0293935e971f768972a42c8557a59bf 15 | 16 | COCOAPODS: 1.1.1 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 | 01383DD93F632A6614CB92165A89F92F /* SAConfettiView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8503E85526DA6222D5F3ED1EC91C0BC /* SAConfettiView.swift */; }; 11 | 13BD98AB0F12BEEDAD6C3C512B82B993 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC32878090C4B2B93381956161EC0930 /* Foundation.framework */; }; 12 | 51B8C501B16DF2E06070CD9B0A742206 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC32878090C4B2B93381956161EC0930 /* Foundation.framework */; }; 13 | 551E7D86C6A12FFB0C881214852DD9FB /* Pods-TZConfettiIntro_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C51ED18454922DFCB8CA174E513C7F7A /* Pods-TZConfettiIntro_Example-dummy.m */; }; 14 | 571ADD9225891B52230045169F1CB8A0 /* CIPageView.xib in Resources */ = {isa = PBXBuildFile; fileRef = D02BE046967D43A8E761519C6B562924 /* CIPageView.xib */; }; 15 | 5BB99C254530F9AE8A4A29E40407F50F /* diamond.png in Resources */ = {isa = PBXBuildFile; fileRef = C8E08AAF9A885C8EB9A796852801250C /* diamond.png */; }; 16 | 6147FBA210390E70E46A4F57E4B49CA4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BF675A168132FD52AED630F977FE906 /* UIKit.framework */; }; 17 | 7431C59209E1F228876F67072B114CB5 /* Pods-TZConfettiIntro_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C3087525ED5C3D302150F2864E3B588F /* Pods-TZConfettiIntro_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | 760FAB07EA28391D750E8657747BAE2A /* TZConfettiIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17F0B10987E6366795DA4EE308C0E92D /* TZConfettiIntroViewController.swift */; }; 19 | 8589516CC279E992F2B6820D956409E4 /* TZConfettiIntro-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 403F894E4F009715EE46A606476C3ECE /* TZConfettiIntro-dummy.m */; }; 20 | 917900FEF76D99EA96D680CC7C50A98C /* triangle.png in Resources */ = {isa = PBXBuildFile; fileRef = 2803CB4FF0A0B9F117857F9C3A09E518 /* triangle.png */; }; 21 | 93C49D21BF935F7E64D0CD070E820212 /* TZConfettiIntro-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CB382E09DD205AE537EBA0456D509D50 /* TZConfettiIntro-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | 9D4344BCBB8CF2CEB254DAB576561D76 /* TZConfettiIntro.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C829855BE522274F7A0C0606D8B30BEE /* TZConfettiIntro.bundle */; }; 23 | B34766200FF1EB6861350406D8814496 /* confetti.png in Resources */ = {isa = PBXBuildFile; fileRef = C2E6469BB865C70348456D5808B79951 /* confetti.png */; }; 24 | B63270CF52856ADC31A1D5E692EC822E /* star.png in Resources */ = {isa = PBXBuildFile; fileRef = D5E09B6A20FBA778049DA6A1AE1ABC54 /* star.png */; }; 25 | D28BBB732CE7433DD75C9BEB911E959E /* Pods-TZConfettiIntro_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 772D3C78755BAE8360B5CFC3FA9A398D /* Pods-TZConfettiIntro_Tests-dummy.m */; }; 26 | D50F233635C50461FF623D2C37BFB551 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0203FCF2E38F9E0B8C4E69853543A3E /* QuartzCore.framework */; }; 27 | EADBD9184C95CD54EDE16DA25937F16B /* CIPageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E34F1872A85D49074D55C37019AE1303 /* CIPageView.swift */; }; 28 | FC0C08D7C86032C5D01DC0D8EB684349 /* TZConfettiIntroViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 824698853C49D1A8114F1A4B0D48BD01 /* TZConfettiIntroViewController.xib */; }; 29 | FD2D8FB0B7A4B393983910479476375A /* Pods-TZConfettiIntro_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A07DA9E7F06BE5CEB4B186E86359B73 /* Pods-TZConfettiIntro_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 30 | FE9BE74CBA3D91E855EDE0941C87B66D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC32878090C4B2B93381956161EC0930 /* Foundation.framework */; }; 31 | /* End PBXBuildFile section */ 32 | 33 | /* Begin PBXContainerItemProxy section */ 34 | 8FB5B6B75256A0D9FAB776BC4C89F170 /* PBXContainerItemProxy */ = { 35 | isa = PBXContainerItemProxy; 36 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 37 | proxyType = 1; 38 | remoteGlobalIDString = 57576DAFBF475C80021942DFC5F5ECF6; 39 | remoteInfo = "TZConfettiIntro-TZConfettiIntro"; 40 | }; 41 | D485D2A74B85856947F78506963BD871 /* PBXContainerItemProxy */ = { 42 | isa = PBXContainerItemProxy; 43 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 44 | proxyType = 1; 45 | remoteGlobalIDString = 082B9B5C7F83DBED27076A199E4947FF; 46 | remoteInfo = TZConfettiIntro; 47 | }; 48 | /* End PBXContainerItemProxy section */ 49 | 50 | /* Begin PBXFileReference section */ 51 | 17F0B10987E6366795DA4EE308C0E92D /* TZConfettiIntroViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TZConfettiIntroViewController.swift; sourceTree = ""; }; 52 | 220A3A961B6D84438A37AA3614715B66 /* Pods-TZConfettiIntro_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-TZConfettiIntro_Tests.modulemap"; sourceTree = ""; }; 53 | 2503C4DAE03D85B0CC5762FE273C3981 /* TZConfettiIntro.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TZConfettiIntro.framework; path = TZConfettiIntro.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | 2803CB4FF0A0B9F117857F9C3A09E518 /* triangle.png */ = {isa = PBXFileReference; includeInIndex = 1; path = triangle.png; sourceTree = ""; }; 55 | 2C74F7F7F5B5D9D4159E007567832467 /* Pods-TZConfettiIntro_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TZConfettiIntro_Tests-acknowledgements.plist"; sourceTree = ""; }; 56 | 332A7CE17A62C97DCCBCF30443758CD0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 57 | 3BFA888ACE1572DFFDEC35B9B143D7D4 /* Pods-TZConfettiIntro_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TZConfettiIntro_Example-frameworks.sh"; sourceTree = ""; }; 58 | 403F894E4F009715EE46A606476C3ECE /* TZConfettiIntro-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TZConfettiIntro-dummy.m"; sourceTree = ""; }; 59 | 473B28C0A2C13E05D5D16DDF7286364E /* Pods-TZConfettiIntro_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TZConfettiIntro_Example-acknowledgements.plist"; sourceTree = ""; }; 60 | 4895BE7524F87214E04DB8EEB96A23A9 /* Pods-TZConfettiIntro_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TZConfettiIntro_Example.release.xcconfig"; sourceTree = ""; }; 61 | 5BF675A168132FD52AED630F977FE906 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 62 | 5E462BDDF4DAEA1FA1328C5999D2D81E /* Pods-TZConfettiIntro_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TZConfettiIntro_Tests-resources.sh"; sourceTree = ""; }; 63 | 651A4BD233807C21A2C1774B707F867C /* Pods-TZConfettiIntro_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TZConfettiIntro_Example-acknowledgements.markdown"; sourceTree = ""; }; 64 | 6E0CC10ADDA19E3CAFCAF376C0ED5FE4 /* ResourceBundle-TZConfettiIntro-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TZConfettiIntro-Info.plist"; sourceTree = ""; }; 65 | 772D3C78755BAE8360B5CFC3FA9A398D /* Pods-TZConfettiIntro_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TZConfettiIntro_Tests-dummy.m"; sourceTree = ""; }; 66 | 7A07DA9E7F06BE5CEB4B186E86359B73 /* Pods-TZConfettiIntro_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TZConfettiIntro_Example-umbrella.h"; sourceTree = ""; }; 67 | 7A6A44C931B18FC3B197201F53AC2310 /* Pods-TZConfettiIntro_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TZConfettiIntro_Tests.debug.xcconfig"; sourceTree = ""; }; 68 | 7B945E6A79F78F77AF01BA0CE5271D55 /* Pods-TZConfettiIntro_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TZConfettiIntro_Tests.release.xcconfig"; sourceTree = ""; }; 69 | 7DAEB943EF3DF435103D69760F4AF679 /* TZConfettiIntro-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TZConfettiIntro-prefix.pch"; sourceTree = ""; }; 70 | 824698853C49D1A8114F1A4B0D48BD01 /* TZConfettiIntroViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = TZConfettiIntroViewController.xib; sourceTree = ""; }; 71 | 8DFDD341CF0E5A2B92B013BA3C502845 /* Pods-TZConfettiIntro_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TZConfettiIntro_Example-resources.sh"; sourceTree = ""; }; 72 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 73 | A42879DDF31AA61E4722EF210A33E3D6 /* TZConfettiIntro.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TZConfettiIntro.xcconfig; sourceTree = ""; }; 74 | A88A33703D2ECB78003A754A6E800802 /* Pods-TZConfettiIntro_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TZConfettiIntro_Tests-acknowledgements.markdown"; sourceTree = ""; }; 75 | C2E6469BB865C70348456D5808B79951 /* confetti.png */ = {isa = PBXFileReference; includeInIndex = 1; path = confetti.png; sourceTree = ""; }; 76 | C3087525ED5C3D302150F2864E3B588F /* Pods-TZConfettiIntro_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TZConfettiIntro_Tests-umbrella.h"; sourceTree = ""; }; 77 | C51ED18454922DFCB8CA174E513C7F7A /* Pods-TZConfettiIntro_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TZConfettiIntro_Example-dummy.m"; sourceTree = ""; }; 78 | C829855BE522274F7A0C0606D8B30BEE /* TZConfettiIntro.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TZConfettiIntro.bundle; path = TZConfettiIntro.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 79 | C8503E85526DA6222D5F3ED1EC91C0BC /* SAConfettiView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SAConfettiView.swift; sourceTree = ""; }; 80 | C8E08AAF9A885C8EB9A796852801250C /* diamond.png */ = {isa = PBXFileReference; includeInIndex = 1; path = diamond.png; sourceTree = ""; }; 81 | CB382E09DD205AE537EBA0456D509D50 /* TZConfettiIntro-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TZConfettiIntro-umbrella.h"; sourceTree = ""; }; 82 | D02BE046967D43A8E761519C6B562924 /* CIPageView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = CIPageView.xib; sourceTree = ""; }; 83 | D5E09B6A20FBA778049DA6A1AE1ABC54 /* star.png */ = {isa = PBXFileReference; includeInIndex = 1; path = star.png; sourceTree = ""; }; 84 | D949632628326A2EE8F2D00D0A13731A /* Pods_TZConfettiIntro_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_TZConfettiIntro_Tests.framework; path = "Pods-TZConfettiIntro_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 85 | DBC9B8EEADADFA4DD764B751518B625D /* Pods_TZConfettiIntro_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_TZConfettiIntro_Example.framework; path = "Pods-TZConfettiIntro_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 86 | DC9A7D7BDDAE4C794DCC1ACAD3F9611B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 87 | E0203FCF2E38F9E0B8C4E69853543A3E /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; 88 | E34F1872A85D49074D55C37019AE1303 /* CIPageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CIPageView.swift; sourceTree = ""; }; 89 | EACB03530B4189CD7A10D67BF31C3253 /* Pods-TZConfettiIntro_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TZConfettiIntro_Example.debug.xcconfig"; sourceTree = ""; }; 90 | EC32878090C4B2B93381956161EC0930 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 91 | ED116F5DA06EBC9248721812006B7B5B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 92 | EDF1EBF8510F3CFC9F49779FF92E12DF /* Pods-TZConfettiIntro_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-TZConfettiIntro_Example.modulemap"; sourceTree = ""; }; 93 | F10E44FBD92B22B23BA8950B2AF77256 /* TZConfettiIntro.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = TZConfettiIntro.modulemap; sourceTree = ""; }; 94 | FDDD6989487D2372211C8DCF8F383A91 /* Pods-TZConfettiIntro_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TZConfettiIntro_Tests-frameworks.sh"; sourceTree = ""; }; 95 | /* End PBXFileReference section */ 96 | 97 | /* Begin PBXFrameworksBuildPhase section */ 98 | 462F49941FBBD70E4EE465C6F2BFF21D /* Frameworks */ = { 99 | isa = PBXFrameworksBuildPhase; 100 | buildActionMask = 2147483647; 101 | files = ( 102 | 51B8C501B16DF2E06070CD9B0A742206 /* Foundation.framework in Frameworks */, 103 | ); 104 | runOnlyForDeploymentPostprocessing = 0; 105 | }; 106 | 836E0313CD7048E08676E461864A5894 /* Frameworks */ = { 107 | isa = PBXFrameworksBuildPhase; 108 | buildActionMask = 2147483647; 109 | files = ( 110 | ); 111 | runOnlyForDeploymentPostprocessing = 0; 112 | }; 113 | B53D0D3084351B573ED374F5C1011CAC /* Frameworks */ = { 114 | isa = PBXFrameworksBuildPhase; 115 | buildActionMask = 2147483647; 116 | files = ( 117 | FE9BE74CBA3D91E855EDE0941C87B66D /* Foundation.framework in Frameworks */, 118 | D50F233635C50461FF623D2C37BFB551 /* QuartzCore.framework in Frameworks */, 119 | 6147FBA210390E70E46A4F57E4B49CA4 /* UIKit.framework in Frameworks */, 120 | ); 121 | runOnlyForDeploymentPostprocessing = 0; 122 | }; 123 | E556A4C424CB2A46B11F8E10E4A0961B /* Frameworks */ = { 124 | isa = PBXFrameworksBuildPhase; 125 | buildActionMask = 2147483647; 126 | files = ( 127 | 13BD98AB0F12BEEDAD6C3C512B82B993 /* Foundation.framework in Frameworks */, 128 | ); 129 | runOnlyForDeploymentPostprocessing = 0; 130 | }; 131 | /* End PBXFrameworksBuildPhase section */ 132 | 133 | /* Begin PBXGroup section */ 134 | 122DA2E5084A4393C29BE363C764795C /* Frameworks */ = { 135 | isa = PBXGroup; 136 | children = ( 137 | E5E9260013FA223D81B907D9285F6EA1 /* iOS */, 138 | ); 139 | name = Frameworks; 140 | sourceTree = ""; 141 | }; 142 | 3BEF3C5EFFBD07846D7CFD41B8902A86 /* Assets */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | D02BE046967D43A8E761519C6B562924 /* CIPageView.xib */, 146 | C2E6469BB865C70348456D5808B79951 /* confetti.png */, 147 | C8E08AAF9A885C8EB9A796852801250C /* diamond.png */, 148 | D5E09B6A20FBA778049DA6A1AE1ABC54 /* star.png */, 149 | 2803CB4FF0A0B9F117857F9C3A09E518 /* triangle.png */, 150 | 824698853C49D1A8114F1A4B0D48BD01 /* TZConfettiIntroViewController.xib */, 151 | ); 152 | name = Assets; 153 | path = Assets; 154 | sourceTree = ""; 155 | }; 156 | 610BB5427378BFEB1FB007A2FD1DE4FF /* Development Pods */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | CAEA7B87945C670BAE53BF341EC0ECB8 /* TZConfettiIntro */, 160 | ); 161 | name = "Development Pods"; 162 | sourceTree = ""; 163 | }; 164 | 61D18FA6D9766E6E10F0A43F01602A8F /* Pods-TZConfettiIntro_Tests */ = { 165 | isa = PBXGroup; 166 | children = ( 167 | ED116F5DA06EBC9248721812006B7B5B /* Info.plist */, 168 | 220A3A961B6D84438A37AA3614715B66 /* Pods-TZConfettiIntro_Tests.modulemap */, 169 | A88A33703D2ECB78003A754A6E800802 /* Pods-TZConfettiIntro_Tests-acknowledgements.markdown */, 170 | 2C74F7F7F5B5D9D4159E007567832467 /* Pods-TZConfettiIntro_Tests-acknowledgements.plist */, 171 | 772D3C78755BAE8360B5CFC3FA9A398D /* Pods-TZConfettiIntro_Tests-dummy.m */, 172 | FDDD6989487D2372211C8DCF8F383A91 /* Pods-TZConfettiIntro_Tests-frameworks.sh */, 173 | 5E462BDDF4DAEA1FA1328C5999D2D81E /* Pods-TZConfettiIntro_Tests-resources.sh */, 174 | C3087525ED5C3D302150F2864E3B588F /* Pods-TZConfettiIntro_Tests-umbrella.h */, 175 | 7A6A44C931B18FC3B197201F53AC2310 /* Pods-TZConfettiIntro_Tests.debug.xcconfig */, 176 | 7B945E6A79F78F77AF01BA0CE5271D55 /* Pods-TZConfettiIntro_Tests.release.xcconfig */, 177 | ); 178 | name = "Pods-TZConfettiIntro_Tests"; 179 | path = "Target Support Files/Pods-TZConfettiIntro_Tests"; 180 | sourceTree = ""; 181 | }; 182 | 78A80B26B5454FD4E4410830DF769380 /* TZConfettiIntro */ = { 183 | isa = PBXGroup; 184 | children = ( 185 | 3BEF3C5EFFBD07846D7CFD41B8902A86 /* Assets */, 186 | ); 187 | name = TZConfettiIntro; 188 | path = TZConfettiIntro; 189 | sourceTree = ""; 190 | }; 191 | 7DB346D0F39D3F0E887471402A8071AB = { 192 | isa = PBXGroup; 193 | children = ( 194 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 195 | 610BB5427378BFEB1FB007A2FD1DE4FF /* Development Pods */, 196 | 122DA2E5084A4393C29BE363C764795C /* Frameworks */, 197 | FFAB61472F66051D84BFEBD49AEE3386 /* Products */, 198 | D17879A093F9EF279EEE9F8BE99831EF /* Targets Support Files */, 199 | ); 200 | sourceTree = ""; 201 | }; 202 | B6228F9FEBAFE65864CEBF2FCE24EEC1 /* Pods-TZConfettiIntro_Example */ = { 203 | isa = PBXGroup; 204 | children = ( 205 | DC9A7D7BDDAE4C794DCC1ACAD3F9611B /* Info.plist */, 206 | EDF1EBF8510F3CFC9F49779FF92E12DF /* Pods-TZConfettiIntro_Example.modulemap */, 207 | 651A4BD233807C21A2C1774B707F867C /* Pods-TZConfettiIntro_Example-acknowledgements.markdown */, 208 | 473B28C0A2C13E05D5D16DDF7286364E /* Pods-TZConfettiIntro_Example-acknowledgements.plist */, 209 | C51ED18454922DFCB8CA174E513C7F7A /* Pods-TZConfettiIntro_Example-dummy.m */, 210 | 3BFA888ACE1572DFFDEC35B9B143D7D4 /* Pods-TZConfettiIntro_Example-frameworks.sh */, 211 | 8DFDD341CF0E5A2B92B013BA3C502845 /* Pods-TZConfettiIntro_Example-resources.sh */, 212 | 7A07DA9E7F06BE5CEB4B186E86359B73 /* Pods-TZConfettiIntro_Example-umbrella.h */, 213 | EACB03530B4189CD7A10D67BF31C3253 /* Pods-TZConfettiIntro_Example.debug.xcconfig */, 214 | 4895BE7524F87214E04DB8EEB96A23A9 /* Pods-TZConfettiIntro_Example.release.xcconfig */, 215 | ); 216 | name = "Pods-TZConfettiIntro_Example"; 217 | path = "Target Support Files/Pods-TZConfettiIntro_Example"; 218 | sourceTree = ""; 219 | }; 220 | BB274AAD061D2CEDBA6EA0C6AFE62EB3 /* Classes */ = { 221 | isa = PBXGroup; 222 | children = ( 223 | E34F1872A85D49074D55C37019AE1303 /* CIPageView.swift */, 224 | C8503E85526DA6222D5F3ED1EC91C0BC /* SAConfettiView.swift */, 225 | 17F0B10987E6366795DA4EE308C0E92D /* TZConfettiIntroViewController.swift */, 226 | ); 227 | name = Classes; 228 | path = Classes; 229 | sourceTree = ""; 230 | }; 231 | CAEA7B87945C670BAE53BF341EC0ECB8 /* TZConfettiIntro */ = { 232 | isa = PBXGroup; 233 | children = ( 234 | EE236A904250B13A8259920B926722A3 /* Resources */, 235 | D067F79CE0DBEBB55B6A208CD3E4D599 /* Support Files */, 236 | D2C15990ACB45379600F280343988EBD /* TZConfettiIntro */, 237 | ); 238 | name = TZConfettiIntro; 239 | path = ../..; 240 | sourceTree = ""; 241 | }; 242 | D067F79CE0DBEBB55B6A208CD3E4D599 /* Support Files */ = { 243 | isa = PBXGroup; 244 | children = ( 245 | 332A7CE17A62C97DCCBCF30443758CD0 /* Info.plist */, 246 | 6E0CC10ADDA19E3CAFCAF376C0ED5FE4 /* ResourceBundle-TZConfettiIntro-Info.plist */, 247 | F10E44FBD92B22B23BA8950B2AF77256 /* TZConfettiIntro.modulemap */, 248 | A42879DDF31AA61E4722EF210A33E3D6 /* TZConfettiIntro.xcconfig */, 249 | 403F894E4F009715EE46A606476C3ECE /* TZConfettiIntro-dummy.m */, 250 | 7DAEB943EF3DF435103D69760F4AF679 /* TZConfettiIntro-prefix.pch */, 251 | CB382E09DD205AE537EBA0456D509D50 /* TZConfettiIntro-umbrella.h */, 252 | ); 253 | name = "Support Files"; 254 | path = "Example/Pods/Target Support Files/TZConfettiIntro"; 255 | sourceTree = ""; 256 | }; 257 | D17879A093F9EF279EEE9F8BE99831EF /* Targets Support Files */ = { 258 | isa = PBXGroup; 259 | children = ( 260 | B6228F9FEBAFE65864CEBF2FCE24EEC1 /* Pods-TZConfettiIntro_Example */, 261 | 61D18FA6D9766E6E10F0A43F01602A8F /* Pods-TZConfettiIntro_Tests */, 262 | ); 263 | name = "Targets Support Files"; 264 | sourceTree = ""; 265 | }; 266 | D2C15990ACB45379600F280343988EBD /* TZConfettiIntro */ = { 267 | isa = PBXGroup; 268 | children = ( 269 | BB274AAD061D2CEDBA6EA0C6AFE62EB3 /* Classes */, 270 | ); 271 | name = TZConfettiIntro; 272 | path = TZConfettiIntro; 273 | sourceTree = ""; 274 | }; 275 | E5E9260013FA223D81B907D9285F6EA1 /* iOS */ = { 276 | isa = PBXGroup; 277 | children = ( 278 | EC32878090C4B2B93381956161EC0930 /* Foundation.framework */, 279 | E0203FCF2E38F9E0B8C4E69853543A3E /* QuartzCore.framework */, 280 | 5BF675A168132FD52AED630F977FE906 /* UIKit.framework */, 281 | ); 282 | name = iOS; 283 | sourceTree = ""; 284 | }; 285 | EE236A904250B13A8259920B926722A3 /* Resources */ = { 286 | isa = PBXGroup; 287 | children = ( 288 | 78A80B26B5454FD4E4410830DF769380 /* TZConfettiIntro */, 289 | ); 290 | name = Resources; 291 | sourceTree = ""; 292 | }; 293 | FFAB61472F66051D84BFEBD49AEE3386 /* Products */ = { 294 | isa = PBXGroup; 295 | children = ( 296 | DBC9B8EEADADFA4DD764B751518B625D /* Pods_TZConfettiIntro_Example.framework */, 297 | D949632628326A2EE8F2D00D0A13731A /* Pods_TZConfettiIntro_Tests.framework */, 298 | C829855BE522274F7A0C0606D8B30BEE /* TZConfettiIntro.bundle */, 299 | 2503C4DAE03D85B0CC5762FE273C3981 /* TZConfettiIntro.framework */, 300 | ); 301 | name = Products; 302 | sourceTree = ""; 303 | }; 304 | /* End PBXGroup section */ 305 | 306 | /* Begin PBXHeadersBuildPhase section */ 307 | 752E4CFDE9AB6BF2CC82B30B443E5955 /* Headers */ = { 308 | isa = PBXHeadersBuildPhase; 309 | buildActionMask = 2147483647; 310 | files = ( 311 | 93C49D21BF935F7E64D0CD070E820212 /* TZConfettiIntro-umbrella.h in Headers */, 312 | ); 313 | runOnlyForDeploymentPostprocessing = 0; 314 | }; 315 | B40AA6CFB13051A1788F9E754CE817BB /* Headers */ = { 316 | isa = PBXHeadersBuildPhase; 317 | buildActionMask = 2147483647; 318 | files = ( 319 | 7431C59209E1F228876F67072B114CB5 /* Pods-TZConfettiIntro_Tests-umbrella.h in Headers */, 320 | ); 321 | runOnlyForDeploymentPostprocessing = 0; 322 | }; 323 | B5CFBE7181C96D918CD4CF2B65F0D7C8 /* Headers */ = { 324 | isa = PBXHeadersBuildPhase; 325 | buildActionMask = 2147483647; 326 | files = ( 327 | FD2D8FB0B7A4B393983910479476375A /* Pods-TZConfettiIntro_Example-umbrella.h in Headers */, 328 | ); 329 | runOnlyForDeploymentPostprocessing = 0; 330 | }; 331 | /* End PBXHeadersBuildPhase section */ 332 | 333 | /* Begin PBXNativeTarget section */ 334 | 082B9B5C7F83DBED27076A199E4947FF /* TZConfettiIntro */ = { 335 | isa = PBXNativeTarget; 336 | buildConfigurationList = 7C951CC1E6239AB14CC9FD5D0AF6BA9D /* Build configuration list for PBXNativeTarget "TZConfettiIntro" */; 337 | buildPhases = ( 338 | FB67CDBE8237663A915A5B297155BFDD /* Sources */, 339 | B53D0D3084351B573ED374F5C1011CAC /* Frameworks */, 340 | CE51D7424CA19D5FA1FDEB1166B361CE /* Resources */, 341 | 752E4CFDE9AB6BF2CC82B30B443E5955 /* Headers */, 342 | ); 343 | buildRules = ( 344 | ); 345 | dependencies = ( 346 | 9555BDF864B53487A2320C1577DC2345 /* PBXTargetDependency */, 347 | ); 348 | name = TZConfettiIntro; 349 | productName = TZConfettiIntro; 350 | productReference = 2503C4DAE03D85B0CC5762FE273C3981 /* TZConfettiIntro.framework */; 351 | productType = "com.apple.product-type.framework"; 352 | }; 353 | 3892AF36545AA29F58C879177035AE19 /* Pods-TZConfettiIntro_Tests */ = { 354 | isa = PBXNativeTarget; 355 | buildConfigurationList = 9BE234D8478B8970212B5A62A4946C06 /* Build configuration list for PBXNativeTarget "Pods-TZConfettiIntro_Tests" */; 356 | buildPhases = ( 357 | 49AC1ACF0B701C61A7039922AA792E03 /* Sources */, 358 | 462F49941FBBD70E4EE465C6F2BFF21D /* Frameworks */, 359 | B40AA6CFB13051A1788F9E754CE817BB /* Headers */, 360 | ); 361 | buildRules = ( 362 | ); 363 | dependencies = ( 364 | ); 365 | name = "Pods-TZConfettiIntro_Tests"; 366 | productName = "Pods-TZConfettiIntro_Tests"; 367 | productReference = D949632628326A2EE8F2D00D0A13731A /* Pods_TZConfettiIntro_Tests.framework */; 368 | productType = "com.apple.product-type.framework"; 369 | }; 370 | 57576DAFBF475C80021942DFC5F5ECF6 /* TZConfettiIntro-TZConfettiIntro */ = { 371 | isa = PBXNativeTarget; 372 | buildConfigurationList = AFEB20D77162E067E47F9A6599EA9B19 /* Build configuration list for PBXNativeTarget "TZConfettiIntro-TZConfettiIntro" */; 373 | buildPhases = ( 374 | F931DD07F0403E24426E4AEF492E9E0C /* Sources */, 375 | 836E0313CD7048E08676E461864A5894 /* Frameworks */, 376 | C5EE5E4E17AC5BDE9A70E662AB821158 /* Resources */, 377 | ); 378 | buildRules = ( 379 | ); 380 | dependencies = ( 381 | ); 382 | name = "TZConfettiIntro-TZConfettiIntro"; 383 | productName = "TZConfettiIntro-TZConfettiIntro"; 384 | productReference = C829855BE522274F7A0C0606D8B30BEE /* TZConfettiIntro.bundle */; 385 | productType = "com.apple.product-type.bundle"; 386 | }; 387 | 946FCBF74146FF4E770F4BB4AD8A3AA6 /* Pods-TZConfettiIntro_Example */ = { 388 | isa = PBXNativeTarget; 389 | buildConfigurationList = F72A3254D4938B3F5925E7CF0615242E /* Build configuration list for PBXNativeTarget "Pods-TZConfettiIntro_Example" */; 390 | buildPhases = ( 391 | 6236DBC8EDC14804596806806825FECB /* Sources */, 392 | E556A4C424CB2A46B11F8E10E4A0961B /* Frameworks */, 393 | B5CFBE7181C96D918CD4CF2B65F0D7C8 /* Headers */, 394 | ); 395 | buildRules = ( 396 | ); 397 | dependencies = ( 398 | 8DBF87DEACC0645A686B0D8864D439CD /* PBXTargetDependency */, 399 | ); 400 | name = "Pods-TZConfettiIntro_Example"; 401 | productName = "Pods-TZConfettiIntro_Example"; 402 | productReference = DBC9B8EEADADFA4DD764B751518B625D /* Pods_TZConfettiIntro_Example.framework */; 403 | productType = "com.apple.product-type.framework"; 404 | }; 405 | /* End PBXNativeTarget section */ 406 | 407 | /* Begin PBXProject section */ 408 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 409 | isa = PBXProject; 410 | attributes = { 411 | LastSwiftUpdateCheck = 0730; 412 | LastUpgradeCheck = 0700; 413 | }; 414 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 415 | compatibilityVersion = "Xcode 3.2"; 416 | developmentRegion = English; 417 | hasScannedForEncodings = 0; 418 | knownRegions = ( 419 | en, 420 | ); 421 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 422 | productRefGroup = FFAB61472F66051D84BFEBD49AEE3386 /* Products */; 423 | projectDirPath = ""; 424 | projectRoot = ""; 425 | targets = ( 426 | 946FCBF74146FF4E770F4BB4AD8A3AA6 /* Pods-TZConfettiIntro_Example */, 427 | 3892AF36545AA29F58C879177035AE19 /* Pods-TZConfettiIntro_Tests */, 428 | 082B9B5C7F83DBED27076A199E4947FF /* TZConfettiIntro */, 429 | 57576DAFBF475C80021942DFC5F5ECF6 /* TZConfettiIntro-TZConfettiIntro */, 430 | ); 431 | }; 432 | /* End PBXProject section */ 433 | 434 | /* Begin PBXResourcesBuildPhase section */ 435 | C5EE5E4E17AC5BDE9A70E662AB821158 /* Resources */ = { 436 | isa = PBXResourcesBuildPhase; 437 | buildActionMask = 2147483647; 438 | files = ( 439 | 571ADD9225891B52230045169F1CB8A0 /* CIPageView.xib in Resources */, 440 | B34766200FF1EB6861350406D8814496 /* confetti.png in Resources */, 441 | 5BB99C254530F9AE8A4A29E40407F50F /* diamond.png in Resources */, 442 | B63270CF52856ADC31A1D5E692EC822E /* star.png in Resources */, 443 | 917900FEF76D99EA96D680CC7C50A98C /* triangle.png in Resources */, 444 | FC0C08D7C86032C5D01DC0D8EB684349 /* TZConfettiIntroViewController.xib in Resources */, 445 | ); 446 | runOnlyForDeploymentPostprocessing = 0; 447 | }; 448 | CE51D7424CA19D5FA1FDEB1166B361CE /* Resources */ = { 449 | isa = PBXResourcesBuildPhase; 450 | buildActionMask = 2147483647; 451 | files = ( 452 | 9D4344BCBB8CF2CEB254DAB576561D76 /* TZConfettiIntro.bundle in Resources */, 453 | ); 454 | runOnlyForDeploymentPostprocessing = 0; 455 | }; 456 | /* End PBXResourcesBuildPhase section */ 457 | 458 | /* Begin PBXSourcesBuildPhase section */ 459 | 49AC1ACF0B701C61A7039922AA792E03 /* Sources */ = { 460 | isa = PBXSourcesBuildPhase; 461 | buildActionMask = 2147483647; 462 | files = ( 463 | D28BBB732CE7433DD75C9BEB911E959E /* Pods-TZConfettiIntro_Tests-dummy.m in Sources */, 464 | ); 465 | runOnlyForDeploymentPostprocessing = 0; 466 | }; 467 | 6236DBC8EDC14804596806806825FECB /* Sources */ = { 468 | isa = PBXSourcesBuildPhase; 469 | buildActionMask = 2147483647; 470 | files = ( 471 | 551E7D86C6A12FFB0C881214852DD9FB /* Pods-TZConfettiIntro_Example-dummy.m in Sources */, 472 | ); 473 | runOnlyForDeploymentPostprocessing = 0; 474 | }; 475 | F931DD07F0403E24426E4AEF492E9E0C /* Sources */ = { 476 | isa = PBXSourcesBuildPhase; 477 | buildActionMask = 2147483647; 478 | files = ( 479 | ); 480 | runOnlyForDeploymentPostprocessing = 0; 481 | }; 482 | FB67CDBE8237663A915A5B297155BFDD /* Sources */ = { 483 | isa = PBXSourcesBuildPhase; 484 | buildActionMask = 2147483647; 485 | files = ( 486 | EADBD9184C95CD54EDE16DA25937F16B /* CIPageView.swift in Sources */, 487 | 01383DD93F632A6614CB92165A89F92F /* SAConfettiView.swift in Sources */, 488 | 8589516CC279E992F2B6820D956409E4 /* TZConfettiIntro-dummy.m in Sources */, 489 | 760FAB07EA28391D750E8657747BAE2A /* TZConfettiIntroViewController.swift in Sources */, 490 | ); 491 | runOnlyForDeploymentPostprocessing = 0; 492 | }; 493 | /* End PBXSourcesBuildPhase section */ 494 | 495 | /* Begin PBXTargetDependency section */ 496 | 8DBF87DEACC0645A686B0D8864D439CD /* PBXTargetDependency */ = { 497 | isa = PBXTargetDependency; 498 | name = TZConfettiIntro; 499 | target = 082B9B5C7F83DBED27076A199E4947FF /* TZConfettiIntro */; 500 | targetProxy = D485D2A74B85856947F78506963BD871 /* PBXContainerItemProxy */; 501 | }; 502 | 9555BDF864B53487A2320C1577DC2345 /* PBXTargetDependency */ = { 503 | isa = PBXTargetDependency; 504 | name = "TZConfettiIntro-TZConfettiIntro"; 505 | target = 57576DAFBF475C80021942DFC5F5ECF6 /* TZConfettiIntro-TZConfettiIntro */; 506 | targetProxy = 8FB5B6B75256A0D9FAB776BC4C89F170 /* PBXContainerItemProxy */; 507 | }; 508 | /* End PBXTargetDependency section */ 509 | 510 | /* Begin XCBuildConfiguration section */ 511 | 3D4B517D55117CAAA8905274AAFDF538 /* Release */ = { 512 | isa = XCBuildConfiguration; 513 | baseConfigurationReference = 4895BE7524F87214E04DB8EEB96A23A9 /* Pods-TZConfettiIntro_Example.release.xcconfig */; 514 | buildSettings = { 515 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 516 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 517 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 518 | CURRENT_PROJECT_VERSION = 1; 519 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 520 | DEFINES_MODULE = YES; 521 | DYLIB_COMPATIBILITY_VERSION = 1; 522 | DYLIB_CURRENT_VERSION = 1; 523 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 524 | ENABLE_STRICT_OBJC_MSGSEND = YES; 525 | GCC_NO_COMMON_BLOCKS = YES; 526 | INFOPLIST_FILE = "Target Support Files/Pods-TZConfettiIntro_Example/Info.plist"; 527 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 528 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 529 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 530 | MACH_O_TYPE = staticlib; 531 | MODULEMAP_FILE = "Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example.modulemap"; 532 | MTL_ENABLE_DEBUG_INFO = NO; 533 | OTHER_LDFLAGS = ""; 534 | OTHER_LIBTOOLFLAGS = ""; 535 | PODS_ROOT = "$(SRCROOT)"; 536 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 537 | PRODUCT_NAME = Pods_TZConfettiIntro_Example; 538 | SDKROOT = iphoneos; 539 | SKIP_INSTALL = YES; 540 | TARGETED_DEVICE_FAMILY = "1,2"; 541 | VERSIONING_SYSTEM = "apple-generic"; 542 | VERSION_INFO_PREFIX = ""; 543 | }; 544 | name = Release; 545 | }; 546 | 42A10654D1544555F5EA93181C5213FB /* Release */ = { 547 | isa = XCBuildConfiguration; 548 | baseConfigurationReference = A42879DDF31AA61E4722EF210A33E3D6 /* TZConfettiIntro.xcconfig */; 549 | buildSettings = { 550 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TZConfettiIntro"; 551 | ENABLE_STRICT_OBJC_MSGSEND = YES; 552 | GCC_NO_COMMON_BLOCKS = YES; 553 | INFOPLIST_FILE = "Target Support Files/TZConfettiIntro/ResourceBundle-TZConfettiIntro-Info.plist"; 554 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 555 | PRODUCT_NAME = TZConfettiIntro; 556 | SDKROOT = iphoneos; 557 | SKIP_INSTALL = YES; 558 | TARGETED_DEVICE_FAMILY = "1,2"; 559 | WRAPPER_EXTENSION = bundle; 560 | }; 561 | name = Release; 562 | }; 563 | 4C99547892F29E94C0511C6CA4787199 /* Debug */ = { 564 | isa = XCBuildConfiguration; 565 | baseConfigurationReference = 7A6A44C931B18FC3B197201F53AC2310 /* Pods-TZConfettiIntro_Tests.debug.xcconfig */; 566 | buildSettings = { 567 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 568 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 569 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 570 | CURRENT_PROJECT_VERSION = 1; 571 | DEBUG_INFORMATION_FORMAT = dwarf; 572 | DEFINES_MODULE = YES; 573 | DYLIB_COMPATIBILITY_VERSION = 1; 574 | DYLIB_CURRENT_VERSION = 1; 575 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 576 | ENABLE_STRICT_OBJC_MSGSEND = YES; 577 | GCC_NO_COMMON_BLOCKS = YES; 578 | INFOPLIST_FILE = "Target Support Files/Pods-TZConfettiIntro_Tests/Info.plist"; 579 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 580 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 581 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 582 | MACH_O_TYPE = staticlib; 583 | MODULEMAP_FILE = "Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests.modulemap"; 584 | MTL_ENABLE_DEBUG_INFO = YES; 585 | OTHER_LDFLAGS = ""; 586 | OTHER_LIBTOOLFLAGS = ""; 587 | PODS_ROOT = "$(SRCROOT)"; 588 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 589 | PRODUCT_NAME = Pods_TZConfettiIntro_Tests; 590 | SDKROOT = iphoneos; 591 | SKIP_INSTALL = YES; 592 | TARGETED_DEVICE_FAMILY = "1,2"; 593 | VERSIONING_SYSTEM = "apple-generic"; 594 | VERSION_INFO_PREFIX = ""; 595 | }; 596 | name = Debug; 597 | }; 598 | 717C9E2990146E56F6DD0AC6F12A4531 /* Release */ = { 599 | isa = XCBuildConfiguration; 600 | baseConfigurationReference = A42879DDF31AA61E4722EF210A33E3D6 /* TZConfettiIntro.xcconfig */; 601 | buildSettings = { 602 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 603 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 604 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 605 | CURRENT_PROJECT_VERSION = 1; 606 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 607 | DEFINES_MODULE = YES; 608 | DYLIB_COMPATIBILITY_VERSION = 1; 609 | DYLIB_CURRENT_VERSION = 1; 610 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 611 | ENABLE_STRICT_OBJC_MSGSEND = YES; 612 | GCC_NO_COMMON_BLOCKS = YES; 613 | GCC_PREFIX_HEADER = "Target Support Files/TZConfettiIntro/TZConfettiIntro-prefix.pch"; 614 | INFOPLIST_FILE = "Target Support Files/TZConfettiIntro/Info.plist"; 615 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 616 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 617 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 618 | MODULEMAP_FILE = "Target Support Files/TZConfettiIntro/TZConfettiIntro.modulemap"; 619 | MTL_ENABLE_DEBUG_INFO = NO; 620 | PRODUCT_NAME = TZConfettiIntro; 621 | SDKROOT = iphoneos; 622 | SKIP_INSTALL = YES; 623 | SWIFT_VERSION = 3.0; 624 | TARGETED_DEVICE_FAMILY = "1,2"; 625 | VERSIONING_SYSTEM = "apple-generic"; 626 | VERSION_INFO_PREFIX = ""; 627 | }; 628 | name = Release; 629 | }; 630 | 7C58CC6926CC50280DD9631828200BBF /* Release */ = { 631 | isa = XCBuildConfiguration; 632 | baseConfigurationReference = 7B945E6A79F78F77AF01BA0CE5271D55 /* Pods-TZConfettiIntro_Tests.release.xcconfig */; 633 | buildSettings = { 634 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 635 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 636 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 637 | CURRENT_PROJECT_VERSION = 1; 638 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 639 | DEFINES_MODULE = YES; 640 | DYLIB_COMPATIBILITY_VERSION = 1; 641 | DYLIB_CURRENT_VERSION = 1; 642 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 643 | ENABLE_STRICT_OBJC_MSGSEND = YES; 644 | GCC_NO_COMMON_BLOCKS = YES; 645 | INFOPLIST_FILE = "Target Support Files/Pods-TZConfettiIntro_Tests/Info.plist"; 646 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 647 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 648 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 649 | MACH_O_TYPE = staticlib; 650 | MODULEMAP_FILE = "Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests.modulemap"; 651 | MTL_ENABLE_DEBUG_INFO = NO; 652 | OTHER_LDFLAGS = ""; 653 | OTHER_LIBTOOLFLAGS = ""; 654 | PODS_ROOT = "$(SRCROOT)"; 655 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 656 | PRODUCT_NAME = Pods_TZConfettiIntro_Tests; 657 | SDKROOT = iphoneos; 658 | SKIP_INSTALL = YES; 659 | TARGETED_DEVICE_FAMILY = "1,2"; 660 | VERSIONING_SYSTEM = "apple-generic"; 661 | VERSION_INFO_PREFIX = ""; 662 | }; 663 | name = Release; 664 | }; 665 | 8DED8AD26D381A6ACFF202E5217EC498 /* Release */ = { 666 | isa = XCBuildConfiguration; 667 | buildSettings = { 668 | ALWAYS_SEARCH_USER_PATHS = NO; 669 | CLANG_ANALYZER_NONNULL = YES; 670 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 671 | CLANG_CXX_LIBRARY = "libc++"; 672 | CLANG_ENABLE_MODULES = YES; 673 | CLANG_ENABLE_OBJC_ARC = YES; 674 | CLANG_WARN_BOOL_CONVERSION = YES; 675 | CLANG_WARN_CONSTANT_CONVERSION = YES; 676 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 677 | CLANG_WARN_EMPTY_BODY = YES; 678 | CLANG_WARN_ENUM_CONVERSION = YES; 679 | CLANG_WARN_INT_CONVERSION = YES; 680 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 681 | CLANG_WARN_UNREACHABLE_CODE = YES; 682 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 683 | CODE_SIGNING_REQUIRED = NO; 684 | COPY_PHASE_STRIP = YES; 685 | ENABLE_NS_ASSERTIONS = NO; 686 | GCC_C_LANGUAGE_STANDARD = gnu99; 687 | GCC_PREPROCESSOR_DEFINITIONS = ( 688 | "POD_CONFIGURATION_RELEASE=1", 689 | "$(inherited)", 690 | ); 691 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 692 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 693 | GCC_WARN_UNDECLARED_SELECTOR = YES; 694 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 695 | GCC_WARN_UNUSED_FUNCTION = YES; 696 | GCC_WARN_UNUSED_VARIABLE = YES; 697 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 698 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 699 | STRIP_INSTALLED_PRODUCT = NO; 700 | SYMROOT = "${SRCROOT}/../build"; 701 | VALIDATE_PRODUCT = YES; 702 | }; 703 | name = Release; 704 | }; 705 | 9E1E4E48AF2EAB23169E611BF694090A /* Debug */ = { 706 | isa = XCBuildConfiguration; 707 | buildSettings = { 708 | ALWAYS_SEARCH_USER_PATHS = NO; 709 | CLANG_ANALYZER_NONNULL = YES; 710 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 711 | CLANG_CXX_LIBRARY = "libc++"; 712 | CLANG_ENABLE_MODULES = YES; 713 | CLANG_ENABLE_OBJC_ARC = YES; 714 | CLANG_WARN_BOOL_CONVERSION = YES; 715 | CLANG_WARN_CONSTANT_CONVERSION = YES; 716 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 717 | CLANG_WARN_EMPTY_BODY = YES; 718 | CLANG_WARN_ENUM_CONVERSION = YES; 719 | CLANG_WARN_INT_CONVERSION = YES; 720 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 721 | CLANG_WARN_UNREACHABLE_CODE = YES; 722 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 723 | CODE_SIGNING_REQUIRED = NO; 724 | COPY_PHASE_STRIP = NO; 725 | ENABLE_TESTABILITY = YES; 726 | GCC_C_LANGUAGE_STANDARD = gnu99; 727 | GCC_DYNAMIC_NO_PIC = NO; 728 | GCC_OPTIMIZATION_LEVEL = 0; 729 | GCC_PREPROCESSOR_DEFINITIONS = ( 730 | "POD_CONFIGURATION_DEBUG=1", 731 | "DEBUG=1", 732 | "$(inherited)", 733 | ); 734 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 735 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 736 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 737 | GCC_WARN_UNDECLARED_SELECTOR = YES; 738 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 739 | GCC_WARN_UNUSED_FUNCTION = YES; 740 | GCC_WARN_UNUSED_VARIABLE = YES; 741 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 742 | ONLY_ACTIVE_ARCH = YES; 743 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 744 | STRIP_INSTALLED_PRODUCT = NO; 745 | SYMROOT = "${SRCROOT}/../build"; 746 | }; 747 | name = Debug; 748 | }; 749 | C77B59BCCFCBA282F652F93E0D62F342 /* Debug */ = { 750 | isa = XCBuildConfiguration; 751 | baseConfigurationReference = A42879DDF31AA61E4722EF210A33E3D6 /* TZConfettiIntro.xcconfig */; 752 | buildSettings = { 753 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TZConfettiIntro"; 754 | ENABLE_STRICT_OBJC_MSGSEND = YES; 755 | GCC_NO_COMMON_BLOCKS = YES; 756 | INFOPLIST_FILE = "Target Support Files/TZConfettiIntro/ResourceBundle-TZConfettiIntro-Info.plist"; 757 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 758 | PRODUCT_NAME = TZConfettiIntro; 759 | SDKROOT = iphoneos; 760 | SKIP_INSTALL = YES; 761 | TARGETED_DEVICE_FAMILY = "1,2"; 762 | WRAPPER_EXTENSION = bundle; 763 | }; 764 | name = Debug; 765 | }; 766 | CF51EDD650B8A72004D6EF04A58C971F /* Debug */ = { 767 | isa = XCBuildConfiguration; 768 | baseConfigurationReference = A42879DDF31AA61E4722EF210A33E3D6 /* TZConfettiIntro.xcconfig */; 769 | buildSettings = { 770 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 771 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 772 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 773 | CURRENT_PROJECT_VERSION = 1; 774 | DEBUG_INFORMATION_FORMAT = dwarf; 775 | DEFINES_MODULE = YES; 776 | DYLIB_COMPATIBILITY_VERSION = 1; 777 | DYLIB_CURRENT_VERSION = 1; 778 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 779 | ENABLE_STRICT_OBJC_MSGSEND = YES; 780 | GCC_NO_COMMON_BLOCKS = YES; 781 | GCC_PREFIX_HEADER = "Target Support Files/TZConfettiIntro/TZConfettiIntro-prefix.pch"; 782 | INFOPLIST_FILE = "Target Support Files/TZConfettiIntro/Info.plist"; 783 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 784 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 785 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 786 | MODULEMAP_FILE = "Target Support Files/TZConfettiIntro/TZConfettiIntro.modulemap"; 787 | MTL_ENABLE_DEBUG_INFO = YES; 788 | PRODUCT_NAME = TZConfettiIntro; 789 | SDKROOT = iphoneos; 790 | SKIP_INSTALL = YES; 791 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 792 | SWIFT_VERSION = 3.0; 793 | TARGETED_DEVICE_FAMILY = "1,2"; 794 | VERSIONING_SYSTEM = "apple-generic"; 795 | VERSION_INFO_PREFIX = ""; 796 | }; 797 | name = Debug; 798 | }; 799 | E15D963007A9D469BFB297E6244C18D1 /* Debug */ = { 800 | isa = XCBuildConfiguration; 801 | baseConfigurationReference = EACB03530B4189CD7A10D67BF31C3253 /* Pods-TZConfettiIntro_Example.debug.xcconfig */; 802 | buildSettings = { 803 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 804 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 805 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 806 | CURRENT_PROJECT_VERSION = 1; 807 | DEBUG_INFORMATION_FORMAT = dwarf; 808 | DEFINES_MODULE = YES; 809 | DYLIB_COMPATIBILITY_VERSION = 1; 810 | DYLIB_CURRENT_VERSION = 1; 811 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 812 | ENABLE_STRICT_OBJC_MSGSEND = YES; 813 | GCC_NO_COMMON_BLOCKS = YES; 814 | INFOPLIST_FILE = "Target Support Files/Pods-TZConfettiIntro_Example/Info.plist"; 815 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 816 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 817 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 818 | MACH_O_TYPE = staticlib; 819 | MODULEMAP_FILE = "Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example.modulemap"; 820 | MTL_ENABLE_DEBUG_INFO = YES; 821 | OTHER_LDFLAGS = ""; 822 | OTHER_LIBTOOLFLAGS = ""; 823 | PODS_ROOT = "$(SRCROOT)"; 824 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 825 | PRODUCT_NAME = Pods_TZConfettiIntro_Example; 826 | SDKROOT = iphoneos; 827 | SKIP_INSTALL = YES; 828 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 829 | TARGETED_DEVICE_FAMILY = "1,2"; 830 | VERSIONING_SYSTEM = "apple-generic"; 831 | VERSION_INFO_PREFIX = ""; 832 | }; 833 | name = Debug; 834 | }; 835 | /* End XCBuildConfiguration section */ 836 | 837 | /* Begin XCConfigurationList section */ 838 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 839 | isa = XCConfigurationList; 840 | buildConfigurations = ( 841 | 9E1E4E48AF2EAB23169E611BF694090A /* Debug */, 842 | 8DED8AD26D381A6ACFF202E5217EC498 /* Release */, 843 | ); 844 | defaultConfigurationIsVisible = 0; 845 | defaultConfigurationName = Release; 846 | }; 847 | 7C951CC1E6239AB14CC9FD5D0AF6BA9D /* Build configuration list for PBXNativeTarget "TZConfettiIntro" */ = { 848 | isa = XCConfigurationList; 849 | buildConfigurations = ( 850 | CF51EDD650B8A72004D6EF04A58C971F /* Debug */, 851 | 717C9E2990146E56F6DD0AC6F12A4531 /* Release */, 852 | ); 853 | defaultConfigurationIsVisible = 0; 854 | defaultConfigurationName = Release; 855 | }; 856 | 9BE234D8478B8970212B5A62A4946C06 /* Build configuration list for PBXNativeTarget "Pods-TZConfettiIntro_Tests" */ = { 857 | isa = XCConfigurationList; 858 | buildConfigurations = ( 859 | 4C99547892F29E94C0511C6CA4787199 /* Debug */, 860 | 7C58CC6926CC50280DD9631828200BBF /* Release */, 861 | ); 862 | defaultConfigurationIsVisible = 0; 863 | defaultConfigurationName = Release; 864 | }; 865 | AFEB20D77162E067E47F9A6599EA9B19 /* Build configuration list for PBXNativeTarget "TZConfettiIntro-TZConfettiIntro" */ = { 866 | isa = XCConfigurationList; 867 | buildConfigurations = ( 868 | C77B59BCCFCBA282F652F93E0D62F342 /* Debug */, 869 | 42A10654D1544555F5EA93181C5213FB /* Release */, 870 | ); 871 | defaultConfigurationIsVisible = 0; 872 | defaultConfigurationName = Release; 873 | }; 874 | F72A3254D4938B3F5925E7CF0615242E /* Build configuration list for PBXNativeTarget "Pods-TZConfettiIntro_Example" */ = { 875 | isa = XCConfigurationList; 876 | buildConfigurations = ( 877 | E15D963007A9D469BFB297E6244C18D1 /* Debug */, 878 | 3D4B517D55117CAAA8905274AAFDF538 /* Release */, 879 | ); 880 | defaultConfigurationIsVisible = 0; 881 | defaultConfigurationName = Release; 882 | }; 883 | /* End XCConfigurationList section */ 884 | }; 885 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 886 | } 887 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_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-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## TZConfettiIntro 5 | 6 | Copyright (c) 2016 Taseen 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-TZConfettiIntro_Example/Pods-TZConfettiIntro_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) 2016 Taseen <tahseen0amin@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 | TZConfettiIntro 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-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TZConfettiIntro_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TZConfettiIntro_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "$BUILT_PRODUCTS_DIR/TZConfettiIntro/TZConfettiIntro.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "$BUILT_PRODUCTS_DIR/TZConfettiIntro/TZConfettiIntro.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | install_resource() 27 | { 28 | if [[ "$1" = /* ]] ; then 29 | RESOURCE_PATH="$1" 30 | else 31 | RESOURCE_PATH="${PODS_ROOT}/$1" 32 | fi 33 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 34 | cat << EOM 35 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 36 | EOM 37 | exit 1 38 | fi 39 | case $RESOURCE_PATH in 40 | *.storyboard) 41 | 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}" 42 | 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} 43 | ;; 44 | *.xib) 45 | 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}" 46 | 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} 47 | ;; 48 | *.framework) 49 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 50 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 51 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 52 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | ;; 54 | *.xcdatamodel) 55 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 56 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 57 | ;; 58 | *.xcdatamodeld) 59 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 60 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 61 | ;; 62 | *.xcmappingmodel) 63 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 64 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 65 | ;; 66 | *.xcassets) 67 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 68 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 69 | ;; 70 | *) 71 | echo "$RESOURCE_PATH" 72 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 73 | ;; 74 | esac 75 | } 76 | 77 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 78 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 79 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 80 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | fi 83 | rm -f "$RESOURCES_TO_COPY" 84 | 85 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 86 | then 87 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 88 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 89 | while read line; do 90 | if [[ $line != "${PODS_ROOT}*" ]]; then 91 | XCASSET_FILES+=("$line") 92 | fi 93 | done <<<"$OTHER_XCASSETS" 94 | 95 | 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}" 96 | fi 97 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | 6 | FOUNDATION_EXPORT double Pods_TZConfettiIntro_ExampleVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char Pods_TZConfettiIntro_ExampleVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/TZConfettiIntro" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/TZConfettiIntro/TZConfettiIntro.framework/Headers" 7 | OTHER_LDFLAGS = $(inherited) -framework "TZConfettiIntro" 8 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 9 | PODS_BUILD_DIR = $BUILD_DIR 10 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TZConfettiIntro_Example { 2 | umbrella header "Pods-TZConfettiIntro_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/TZConfettiIntro" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/TZConfettiIntro/TZConfettiIntro.framework/Headers" 7 | OTHER_LDFLAGS = $(inherited) -framework "TZConfettiIntro" 8 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 9 | PODS_BUILD_DIR = $BUILD_DIR 10 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_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-TZConfettiIntro_Tests/Pods-TZConfettiIntro_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-TZConfettiIntro_Tests/Pods-TZConfettiIntro_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-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_TZConfettiIntro_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_TZConfettiIntro_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | install_resource() 27 | { 28 | if [[ "$1" = /* ]] ; then 29 | RESOURCE_PATH="$1" 30 | else 31 | RESOURCE_PATH="${PODS_ROOT}/$1" 32 | fi 33 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 34 | cat << EOM 35 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 36 | EOM 37 | exit 1 38 | fi 39 | case $RESOURCE_PATH in 40 | *.storyboard) 41 | 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}" 42 | 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} 43 | ;; 44 | *.xib) 45 | 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}" 46 | 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} 47 | ;; 48 | *.framework) 49 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 50 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 51 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 52 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | ;; 54 | *.xcdatamodel) 55 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 56 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 57 | ;; 58 | *.xcdatamodeld) 59 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 60 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 61 | ;; 62 | *.xcmappingmodel) 63 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 64 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 65 | ;; 66 | *.xcassets) 67 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 68 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 69 | ;; 70 | *) 71 | echo "$RESOURCE_PATH" 72 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 73 | ;; 74 | esac 75 | } 76 | 77 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 78 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 79 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 80 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | fi 83 | rm -f "$RESOURCES_TO_COPY" 84 | 85 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 86 | then 87 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 88 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 89 | while read line; do 90 | if [[ $line != "${PODS_ROOT}*" ]]; then 91 | XCASSET_FILES+=("$line") 92 | fi 93 | done <<<"$OTHER_XCASSETS" 94 | 95 | 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}" 96 | fi 97 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | 6 | FOUNDATION_EXPORT double Pods_TZConfettiIntro_TestsVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char Pods_TZConfettiIntro_TestsVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/TZConfettiIntro" 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/TZConfettiIntro/TZConfettiIntro.framework/Headers" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_TZConfettiIntro_Tests { 2 | umbrella header "Pods-TZConfettiIntro_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/TZConfettiIntro" 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/TZConfettiIntro/TZConfettiIntro.framework/Headers" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TZConfettiIntro/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/TZConfettiIntro/ResourceBundle-TZConfettiIntro-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleIdentifier 8 | ${PRODUCT_BUNDLE_IDENTIFIER} 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | ${PRODUCT_NAME} 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 0.1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TZConfettiIntro/TZConfettiIntro-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TZConfettiIntro : NSObject 3 | @end 4 | @implementation PodsDummy_TZConfettiIntro 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TZConfettiIntro/TZConfettiIntro-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TZConfettiIntro/TZConfettiIntro-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | 6 | FOUNDATION_EXPORT double TZConfettiIntroVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char TZConfettiIntroVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TZConfettiIntro/TZConfettiIntro.modulemap: -------------------------------------------------------------------------------- 1 | framework module TZConfettiIntro { 2 | umbrella header "TZConfettiIntro-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TZConfettiIntro/TZConfettiIntro.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/TZConfettiIntro 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "QuartzCore" -framework "UIKit" 5 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example/TZConfettiIntro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahseen0amin/TZConfettiIntro/cd6bba65b2b98c3e4537c90f1f68e1a59e8b1468/Example/TZConfettiIntro.gif -------------------------------------------------------------------------------- /Example/TZConfettiIntro.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 | 92A6AAC886D6AE9C2AF7A7CC /* Pods_TZConfettiIntro_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2E111B2E90D651693F52502 /* Pods_TZConfettiIntro_Tests.framework */; }; 17 | 96DA0EDE799BA28AA4C39FE2 /* Pods_TZConfettiIntro_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 87F6FFB7B90A24C42CFE44E7 /* Pods_TZConfettiIntro_Example.framework */; }; 18 | FA2266681E0F14C000A33250 /* NewFeatureIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA2266671E0F14C000A33250 /* NewFeatureIntroViewController.swift */; }; 19 | FA2266751E10E80500A33250 /* CustomPageView.xib in Resources */ = {isa = PBXBuildFile; fileRef = FA2266741E10E80500A33250 /* CustomPageView.xib */; }; 20 | FAB9BBFB1E1A5E3900DB07D9 /* TZConfettiIntro.gif in Resources */ = {isa = PBXBuildFile; fileRef = FAB9BBFA1E1A5E3900DB07D9 /* TZConfettiIntro.gif */; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 29 | remoteInfo = TZConfettiIntro; 30 | }; 31 | /* End PBXContainerItemProxy section */ 32 | 33 | /* Begin PBXFileReference section */ 34 | 0DECA0B2A3CA64E63F86F078 /* Pods-TZConfettiIntro_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TZConfettiIntro_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests.debug.xcconfig"; sourceTree = ""; }; 35 | 31D779554F0B8ACA892C4263 /* Pods-TZConfettiIntro_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TZConfettiIntro_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests.release.xcconfig"; sourceTree = ""; }; 36 | 4DB6E0D98EEBE481A125F072 /* Pods-TZConfettiIntro_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TZConfettiIntro_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example.debug.xcconfig"; sourceTree = ""; }; 37 | 607FACD01AFB9204008FA782 /* TZConfettiIntro_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TZConfettiIntro_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 39 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 40 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 41 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 43 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 44 | 607FACE51AFB9204008FA782 /* TZConfettiIntro_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TZConfettiIntro_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 47 | 61AF4B8502BF0CC86F395DEB /* Pods-TZConfettiIntro_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TZConfettiIntro_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example.release.xcconfig"; sourceTree = ""; }; 48 | 818E32E3D3DCC118B875E993 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 49 | 87F6FFB7B90A24C42CFE44E7 /* Pods_TZConfettiIntro_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TZConfettiIntro_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | A2E111B2E90D651693F52502 /* Pods_TZConfettiIntro_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TZConfettiIntro_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | AAEC556F5FCB38201263A357 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 52 | CADF78C369DF351F98E3D50F /* TZConfettiIntro.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = TZConfettiIntro.podspec; path = ../TZConfettiIntro.podspec; sourceTree = ""; }; 53 | FA2266671E0F14C000A33250 /* NewFeatureIntroViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NewFeatureIntroViewController.swift; sourceTree = ""; }; 54 | FA2266741E10E80500A33250 /* CustomPageView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CustomPageView.xib; sourceTree = ""; }; 55 | FAB9BBFA1E1A5E3900DB07D9 /* TZConfettiIntro.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = TZConfettiIntro.gif; sourceTree = ""; }; 56 | /* End PBXFileReference section */ 57 | 58 | /* Begin PBXFrameworksBuildPhase section */ 59 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 60 | isa = PBXFrameworksBuildPhase; 61 | buildActionMask = 2147483647; 62 | files = ( 63 | 96DA0EDE799BA28AA4C39FE2 /* Pods_TZConfettiIntro_Example.framework in Frameworks */, 64 | ); 65 | runOnlyForDeploymentPostprocessing = 0; 66 | }; 67 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 68 | isa = PBXFrameworksBuildPhase; 69 | buildActionMask = 2147483647; 70 | files = ( 71 | 92A6AAC886D6AE9C2AF7A7CC /* Pods_TZConfettiIntro_Tests.framework in Frameworks */, 72 | ); 73 | runOnlyForDeploymentPostprocessing = 0; 74 | }; 75 | /* End PBXFrameworksBuildPhase section */ 76 | 77 | /* Begin PBXGroup section */ 78 | 607FACC71AFB9204008FA782 = { 79 | isa = PBXGroup; 80 | children = ( 81 | FAB9BBFA1E1A5E3900DB07D9 /* TZConfettiIntro.gif */, 82 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 83 | 607FACD21AFB9204008FA782 /* Example for TZConfettiIntro */, 84 | 607FACE81AFB9204008FA782 /* Tests */, 85 | 607FACD11AFB9204008FA782 /* Products */, 86 | C866D68B7FB6881D8AC8B691 /* Pods */, 87 | B410CA9DF1AC2BDABEF38927 /* Frameworks */, 88 | ); 89 | sourceTree = ""; 90 | }; 91 | 607FACD11AFB9204008FA782 /* Products */ = { 92 | isa = PBXGroup; 93 | children = ( 94 | 607FACD01AFB9204008FA782 /* TZConfettiIntro_Example.app */, 95 | 607FACE51AFB9204008FA782 /* TZConfettiIntro_Tests.xctest */, 96 | ); 97 | name = Products; 98 | sourceTree = ""; 99 | }; 100 | 607FACD21AFB9204008FA782 /* Example for TZConfettiIntro */ = { 101 | isa = PBXGroup; 102 | children = ( 103 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 104 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 105 | FA2266671E0F14C000A33250 /* NewFeatureIntroViewController.swift */, 106 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 107 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 108 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 109 | FA2266741E10E80500A33250 /* CustomPageView.xib */, 110 | 607FACD31AFB9204008FA782 /* Supporting Files */, 111 | ); 112 | name = "Example for TZConfettiIntro"; 113 | path = TZConfettiIntro; 114 | sourceTree = ""; 115 | }; 116 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 117 | isa = PBXGroup; 118 | children = ( 119 | 607FACD41AFB9204008FA782 /* Info.plist */, 120 | ); 121 | name = "Supporting Files"; 122 | sourceTree = ""; 123 | }; 124 | 607FACE81AFB9204008FA782 /* Tests */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 128 | 607FACE91AFB9204008FA782 /* Supporting Files */, 129 | ); 130 | path = Tests; 131 | sourceTree = ""; 132 | }; 133 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 607FACEA1AFB9204008FA782 /* Info.plist */, 137 | ); 138 | name = "Supporting Files"; 139 | sourceTree = ""; 140 | }; 141 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | CADF78C369DF351F98E3D50F /* TZConfettiIntro.podspec */, 145 | AAEC556F5FCB38201263A357 /* README.md */, 146 | 818E32E3D3DCC118B875E993 /* LICENSE */, 147 | ); 148 | name = "Podspec Metadata"; 149 | sourceTree = ""; 150 | }; 151 | B410CA9DF1AC2BDABEF38927 /* Frameworks */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | 87F6FFB7B90A24C42CFE44E7 /* Pods_TZConfettiIntro_Example.framework */, 155 | A2E111B2E90D651693F52502 /* Pods_TZConfettiIntro_Tests.framework */, 156 | ); 157 | name = Frameworks; 158 | sourceTree = ""; 159 | }; 160 | C866D68B7FB6881D8AC8B691 /* Pods */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | 4DB6E0D98EEBE481A125F072 /* Pods-TZConfettiIntro_Example.debug.xcconfig */, 164 | 61AF4B8502BF0CC86F395DEB /* Pods-TZConfettiIntro_Example.release.xcconfig */, 165 | 0DECA0B2A3CA64E63F86F078 /* Pods-TZConfettiIntro_Tests.debug.xcconfig */, 166 | 31D779554F0B8ACA892C4263 /* Pods-TZConfettiIntro_Tests.release.xcconfig */, 167 | ); 168 | name = Pods; 169 | sourceTree = ""; 170 | }; 171 | /* End PBXGroup section */ 172 | 173 | /* Begin PBXNativeTarget section */ 174 | 607FACCF1AFB9204008FA782 /* TZConfettiIntro_Example */ = { 175 | isa = PBXNativeTarget; 176 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TZConfettiIntro_Example" */; 177 | buildPhases = ( 178 | DA3CB0B495A8D5E1078842C7 /* [CP] Check Pods Manifest.lock */, 179 | 607FACCC1AFB9204008FA782 /* Sources */, 180 | 607FACCD1AFB9204008FA782 /* Frameworks */, 181 | 607FACCE1AFB9204008FA782 /* Resources */, 182 | C80C4177DED8ED8DA8C55661 /* [CP] Embed Pods Frameworks */, 183 | 162965131C575221F6358754 /* [CP] Copy Pods Resources */, 184 | ); 185 | buildRules = ( 186 | ); 187 | dependencies = ( 188 | ); 189 | name = TZConfettiIntro_Example; 190 | productName = TZConfettiIntro; 191 | productReference = 607FACD01AFB9204008FA782 /* TZConfettiIntro_Example.app */; 192 | productType = "com.apple.product-type.application"; 193 | }; 194 | 607FACE41AFB9204008FA782 /* TZConfettiIntro_Tests */ = { 195 | isa = PBXNativeTarget; 196 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TZConfettiIntro_Tests" */; 197 | buildPhases = ( 198 | BAB6F8DB46D6CA3B1F15EFF8 /* [CP] Check Pods Manifest.lock */, 199 | 607FACE11AFB9204008FA782 /* Sources */, 200 | 607FACE21AFB9204008FA782 /* Frameworks */, 201 | 607FACE31AFB9204008FA782 /* Resources */, 202 | C2EE9AD43BA6F2120AC20666 /* [CP] Embed Pods Frameworks */, 203 | 8EEABC5F5BC4ABD4604E2528 /* [CP] Copy Pods Resources */, 204 | ); 205 | buildRules = ( 206 | ); 207 | dependencies = ( 208 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 209 | ); 210 | name = TZConfettiIntro_Tests; 211 | productName = Tests; 212 | productReference = 607FACE51AFB9204008FA782 /* TZConfettiIntro_Tests.xctest */; 213 | productType = "com.apple.product-type.bundle.unit-test"; 214 | }; 215 | /* End PBXNativeTarget section */ 216 | 217 | /* Begin PBXProject section */ 218 | 607FACC81AFB9204008FA782 /* Project object */ = { 219 | isa = PBXProject; 220 | attributes = { 221 | LastSwiftUpdateCheck = 0720; 222 | LastUpgradeCheck = 0810; 223 | ORGANIZATIONNAME = CocoaPods; 224 | TargetAttributes = { 225 | 607FACCF1AFB9204008FA782 = { 226 | CreatedOnToolsVersion = 6.3.1; 227 | LastSwiftMigration = 0810; 228 | }; 229 | 607FACE41AFB9204008FA782 = { 230 | CreatedOnToolsVersion = 6.3.1; 231 | LastSwiftMigration = 0810; 232 | TestTargetID = 607FACCF1AFB9204008FA782; 233 | }; 234 | }; 235 | }; 236 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "TZConfettiIntro" */; 237 | compatibilityVersion = "Xcode 3.2"; 238 | developmentRegion = English; 239 | hasScannedForEncodings = 0; 240 | knownRegions = ( 241 | en, 242 | Base, 243 | ); 244 | mainGroup = 607FACC71AFB9204008FA782; 245 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 246 | projectDirPath = ""; 247 | projectRoot = ""; 248 | targets = ( 249 | 607FACCF1AFB9204008FA782 /* TZConfettiIntro_Example */, 250 | 607FACE41AFB9204008FA782 /* TZConfettiIntro_Tests */, 251 | ); 252 | }; 253 | /* End PBXProject section */ 254 | 255 | /* Begin PBXResourcesBuildPhase section */ 256 | 607FACCE1AFB9204008FA782 /* Resources */ = { 257 | isa = PBXResourcesBuildPhase; 258 | buildActionMask = 2147483647; 259 | files = ( 260 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 261 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 262 | FA2266751E10E80500A33250 /* CustomPageView.xib in Resources */, 263 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 264 | FAB9BBFB1E1A5E3900DB07D9 /* TZConfettiIntro.gif in Resources */, 265 | ); 266 | runOnlyForDeploymentPostprocessing = 0; 267 | }; 268 | 607FACE31AFB9204008FA782 /* Resources */ = { 269 | isa = PBXResourcesBuildPhase; 270 | buildActionMask = 2147483647; 271 | files = ( 272 | ); 273 | runOnlyForDeploymentPostprocessing = 0; 274 | }; 275 | /* End PBXResourcesBuildPhase section */ 276 | 277 | /* Begin PBXShellScriptBuildPhase section */ 278 | 162965131C575221F6358754 /* [CP] Copy Pods Resources */ = { 279 | isa = PBXShellScriptBuildPhase; 280 | buildActionMask = 2147483647; 281 | files = ( 282 | ); 283 | inputPaths = ( 284 | ); 285 | name = "[CP] Copy Pods Resources"; 286 | outputPaths = ( 287 | ); 288 | runOnlyForDeploymentPostprocessing = 0; 289 | shellPath = /bin/sh; 290 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example-resources.sh\"\n"; 291 | showEnvVarsInLog = 0; 292 | }; 293 | 8EEABC5F5BC4ABD4604E2528 /* [CP] Copy Pods Resources */ = { 294 | isa = PBXShellScriptBuildPhase; 295 | buildActionMask = 2147483647; 296 | files = ( 297 | ); 298 | inputPaths = ( 299 | ); 300 | name = "[CP] Copy Pods Resources"; 301 | outputPaths = ( 302 | ); 303 | runOnlyForDeploymentPostprocessing = 0; 304 | shellPath = /bin/sh; 305 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests-resources.sh\"\n"; 306 | showEnvVarsInLog = 0; 307 | }; 308 | BAB6F8DB46D6CA3B1F15EFF8 /* [CP] Check Pods Manifest.lock */ = { 309 | isa = PBXShellScriptBuildPhase; 310 | buildActionMask = 2147483647; 311 | files = ( 312 | ); 313 | inputPaths = ( 314 | ); 315 | name = "[CP] Check Pods Manifest.lock"; 316 | outputPaths = ( 317 | ); 318 | runOnlyForDeploymentPostprocessing = 0; 319 | shellPath = /bin/sh; 320 | shellScript = "diff \"${PODS_ROOT}/../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"; 321 | showEnvVarsInLog = 0; 322 | }; 323 | C2EE9AD43BA6F2120AC20666 /* [CP] Embed Pods Frameworks */ = { 324 | isa = PBXShellScriptBuildPhase; 325 | buildActionMask = 2147483647; 326 | files = ( 327 | ); 328 | inputPaths = ( 329 | ); 330 | name = "[CP] Embed Pods Frameworks"; 331 | outputPaths = ( 332 | ); 333 | runOnlyForDeploymentPostprocessing = 0; 334 | shellPath = /bin/sh; 335 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TZConfettiIntro_Tests/Pods-TZConfettiIntro_Tests-frameworks.sh\"\n"; 336 | showEnvVarsInLog = 0; 337 | }; 338 | C80C4177DED8ED8DA8C55661 /* [CP] Embed Pods Frameworks */ = { 339 | isa = PBXShellScriptBuildPhase; 340 | buildActionMask = 2147483647; 341 | files = ( 342 | ); 343 | inputPaths = ( 344 | ); 345 | name = "[CP] Embed Pods Frameworks"; 346 | outputPaths = ( 347 | ); 348 | runOnlyForDeploymentPostprocessing = 0; 349 | shellPath = /bin/sh; 350 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TZConfettiIntro_Example/Pods-TZConfettiIntro_Example-frameworks.sh\"\n"; 351 | showEnvVarsInLog = 0; 352 | }; 353 | DA3CB0B495A8D5E1078842C7 /* [CP] Check Pods Manifest.lock */ = { 354 | isa = PBXShellScriptBuildPhase; 355 | buildActionMask = 2147483647; 356 | files = ( 357 | ); 358 | inputPaths = ( 359 | ); 360 | name = "[CP] Check Pods Manifest.lock"; 361 | outputPaths = ( 362 | ); 363 | runOnlyForDeploymentPostprocessing = 0; 364 | shellPath = /bin/sh; 365 | shellScript = "diff \"${PODS_ROOT}/../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"; 366 | showEnvVarsInLog = 0; 367 | }; 368 | /* End PBXShellScriptBuildPhase section */ 369 | 370 | /* Begin PBXSourcesBuildPhase section */ 371 | 607FACCC1AFB9204008FA782 /* Sources */ = { 372 | isa = PBXSourcesBuildPhase; 373 | buildActionMask = 2147483647; 374 | files = ( 375 | FA2266681E0F14C000A33250 /* NewFeatureIntroViewController.swift in Sources */, 376 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 377 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 378 | ); 379 | runOnlyForDeploymentPostprocessing = 0; 380 | }; 381 | 607FACE11AFB9204008FA782 /* Sources */ = { 382 | isa = PBXSourcesBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 386 | ); 387 | runOnlyForDeploymentPostprocessing = 0; 388 | }; 389 | /* End PBXSourcesBuildPhase section */ 390 | 391 | /* Begin PBXTargetDependency section */ 392 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 393 | isa = PBXTargetDependency; 394 | target = 607FACCF1AFB9204008FA782 /* TZConfettiIntro_Example */; 395 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 396 | }; 397 | /* End PBXTargetDependency section */ 398 | 399 | /* Begin PBXVariantGroup section */ 400 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 401 | isa = PBXVariantGroup; 402 | children = ( 403 | 607FACDA1AFB9204008FA782 /* Base */, 404 | ); 405 | name = Main.storyboard; 406 | sourceTree = ""; 407 | }; 408 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 409 | isa = PBXVariantGroup; 410 | children = ( 411 | 607FACDF1AFB9204008FA782 /* Base */, 412 | ); 413 | name = LaunchScreen.xib; 414 | sourceTree = ""; 415 | }; 416 | /* End PBXVariantGroup section */ 417 | 418 | /* Begin XCBuildConfiguration section */ 419 | 607FACED1AFB9204008FA782 /* Debug */ = { 420 | isa = XCBuildConfiguration; 421 | buildSettings = { 422 | ALWAYS_SEARCH_USER_PATHS = NO; 423 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 424 | CLANG_CXX_LIBRARY = "libc++"; 425 | CLANG_ENABLE_MODULES = YES; 426 | CLANG_ENABLE_OBJC_ARC = YES; 427 | CLANG_WARN_BOOL_CONVERSION = YES; 428 | CLANG_WARN_CONSTANT_CONVERSION = YES; 429 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 430 | CLANG_WARN_EMPTY_BODY = YES; 431 | CLANG_WARN_ENUM_CONVERSION = YES; 432 | CLANG_WARN_INFINITE_RECURSION = YES; 433 | CLANG_WARN_INT_CONVERSION = YES; 434 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 435 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 436 | CLANG_WARN_UNREACHABLE_CODE = YES; 437 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 438 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 439 | COPY_PHASE_STRIP = NO; 440 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 441 | ENABLE_STRICT_OBJC_MSGSEND = YES; 442 | ENABLE_TESTABILITY = YES; 443 | GCC_C_LANGUAGE_STANDARD = gnu99; 444 | GCC_DYNAMIC_NO_PIC = NO; 445 | GCC_NO_COMMON_BLOCKS = YES; 446 | GCC_OPTIMIZATION_LEVEL = 0; 447 | GCC_PREPROCESSOR_DEFINITIONS = ( 448 | "DEBUG=1", 449 | "$(inherited)", 450 | ); 451 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 452 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 453 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 454 | GCC_WARN_UNDECLARED_SELECTOR = YES; 455 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 456 | GCC_WARN_UNUSED_FUNCTION = YES; 457 | GCC_WARN_UNUSED_VARIABLE = YES; 458 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 459 | MTL_ENABLE_DEBUG_INFO = YES; 460 | ONLY_ACTIVE_ARCH = YES; 461 | SDKROOT = iphoneos; 462 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 463 | }; 464 | name = Debug; 465 | }; 466 | 607FACEE1AFB9204008FA782 /* Release */ = { 467 | isa = XCBuildConfiguration; 468 | buildSettings = { 469 | ALWAYS_SEARCH_USER_PATHS = NO; 470 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 471 | CLANG_CXX_LIBRARY = "libc++"; 472 | CLANG_ENABLE_MODULES = YES; 473 | CLANG_ENABLE_OBJC_ARC = YES; 474 | CLANG_WARN_BOOL_CONVERSION = YES; 475 | CLANG_WARN_CONSTANT_CONVERSION = YES; 476 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 477 | CLANG_WARN_EMPTY_BODY = YES; 478 | CLANG_WARN_ENUM_CONVERSION = YES; 479 | CLANG_WARN_INFINITE_RECURSION = YES; 480 | CLANG_WARN_INT_CONVERSION = YES; 481 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 482 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 483 | CLANG_WARN_UNREACHABLE_CODE = YES; 484 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 485 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 486 | COPY_PHASE_STRIP = NO; 487 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 488 | ENABLE_NS_ASSERTIONS = NO; 489 | ENABLE_STRICT_OBJC_MSGSEND = YES; 490 | GCC_C_LANGUAGE_STANDARD = gnu99; 491 | GCC_NO_COMMON_BLOCKS = YES; 492 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 493 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 494 | GCC_WARN_UNDECLARED_SELECTOR = YES; 495 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 496 | GCC_WARN_UNUSED_FUNCTION = YES; 497 | GCC_WARN_UNUSED_VARIABLE = YES; 498 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 499 | MTL_ENABLE_DEBUG_INFO = NO; 500 | SDKROOT = iphoneos; 501 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 502 | VALIDATE_PRODUCT = YES; 503 | }; 504 | name = Release; 505 | }; 506 | 607FACF01AFB9204008FA782 /* Debug */ = { 507 | isa = XCBuildConfiguration; 508 | baseConfigurationReference = 4DB6E0D98EEBE481A125F072 /* Pods-TZConfettiIntro_Example.debug.xcconfig */; 509 | buildSettings = { 510 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)"; 511 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 512 | INFOPLIST_FILE = TZConfettiIntro/Info.plist; 513 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 514 | MODULE_NAME = ExampleApp; 515 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 516 | PRODUCT_NAME = "$(TARGET_NAME)"; 517 | SWIFT_VERSION = 3.0; 518 | }; 519 | name = Debug; 520 | }; 521 | 607FACF11AFB9204008FA782 /* Release */ = { 522 | isa = XCBuildConfiguration; 523 | baseConfigurationReference = 61AF4B8502BF0CC86F395DEB /* Pods-TZConfettiIntro_Example.release.xcconfig */; 524 | buildSettings = { 525 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)"; 526 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 527 | INFOPLIST_FILE = TZConfettiIntro/Info.plist; 528 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 529 | MODULE_NAME = ExampleApp; 530 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 531 | PRODUCT_NAME = "$(TARGET_NAME)"; 532 | SWIFT_VERSION = 3.0; 533 | }; 534 | name = Release; 535 | }; 536 | 607FACF31AFB9204008FA782 /* Debug */ = { 537 | isa = XCBuildConfiguration; 538 | baseConfigurationReference = 0DECA0B2A3CA64E63F86F078 /* Pods-TZConfettiIntro_Tests.debug.xcconfig */; 539 | buildSettings = { 540 | FRAMEWORK_SEARCH_PATHS = ( 541 | "$(SDKROOT)/Developer/Library/Frameworks", 542 | "$(inherited)", 543 | ); 544 | GCC_PREPROCESSOR_DEFINITIONS = ( 545 | "DEBUG=1", 546 | "$(inherited)", 547 | ); 548 | INFOPLIST_FILE = Tests/Info.plist; 549 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 550 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 551 | PRODUCT_NAME = "$(TARGET_NAME)"; 552 | SWIFT_VERSION = 3.0; 553 | }; 554 | name = Debug; 555 | }; 556 | 607FACF41AFB9204008FA782 /* Release */ = { 557 | isa = XCBuildConfiguration; 558 | baseConfigurationReference = 31D779554F0B8ACA892C4263 /* Pods-TZConfettiIntro_Tests.release.xcconfig */; 559 | buildSettings = { 560 | FRAMEWORK_SEARCH_PATHS = ( 561 | "$(SDKROOT)/Developer/Library/Frameworks", 562 | "$(inherited)", 563 | ); 564 | INFOPLIST_FILE = Tests/Info.plist; 565 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 566 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 567 | PRODUCT_NAME = "$(TARGET_NAME)"; 568 | SWIFT_VERSION = 3.0; 569 | }; 570 | name = Release; 571 | }; 572 | /* End XCBuildConfiguration section */ 573 | 574 | /* Begin XCConfigurationList section */ 575 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "TZConfettiIntro" */ = { 576 | isa = XCConfigurationList; 577 | buildConfigurations = ( 578 | 607FACED1AFB9204008FA782 /* Debug */, 579 | 607FACEE1AFB9204008FA782 /* Release */, 580 | ); 581 | defaultConfigurationIsVisible = 0; 582 | defaultConfigurationName = Release; 583 | }; 584 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TZConfettiIntro_Example" */ = { 585 | isa = XCConfigurationList; 586 | buildConfigurations = ( 587 | 607FACF01AFB9204008FA782 /* Debug */, 588 | 607FACF11AFB9204008FA782 /* Release */, 589 | ); 590 | defaultConfigurationIsVisible = 0; 591 | defaultConfigurationName = Release; 592 | }; 593 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "TZConfettiIntro_Tests" */ = { 594 | isa = XCConfigurationList; 595 | buildConfigurations = ( 596 | 607FACF31AFB9204008FA782 /* Debug */, 597 | 607FACF41AFB9204008FA782 /* Release */, 598 | ); 599 | defaultConfigurationIsVisible = 0; 600 | defaultConfigurationName = Release; 601 | }; 602 | /* End XCConfigurationList section */ 603 | }; 604 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 605 | } 606 | -------------------------------------------------------------------------------- /Example/TZConfettiIntro.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/TZConfettiIntro.xcodeproj/xcshareddata/xcschemes/TZConfettiIntro-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/TZConfettiIntro.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/TZConfettiIntro/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // TZConfettiIntro 4 | // 5 | // Created by Taseen on 12/25/2016. 6 | // Copyright (c) 2016 Taseen. 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/TZConfettiIntro/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/TZConfettiIntro/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/TZConfettiIntro/CustomPageView.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 30 | 31 | 32 | 33 | 34 | 35 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /Example/TZConfettiIntro/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | } 43 | ], 44 | "info" : { 45 | "version" : 1, 46 | "author" : "xcode" 47 | } 48 | } -------------------------------------------------------------------------------- /Example/TZConfettiIntro/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/TZConfettiIntro/NewFeatureIntroViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NewFeatureIntroViewController.swift 3 | // TZConfettiIntro 4 | // 5 | // Created by Taseen Amin on 25/12/2016. 6 | // Copyright © 2016 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import TZConfettiIntro 11 | 12 | class NewFeatureIntroViewController: TZConfettiIntroViewController { 13 | 14 | override func viewDidLoad() { 15 | let page0 = CIPageView() 16 | page0.headingLabel?.text = "FIRST PAGE" 17 | page0.bodyLabel?.text = "You can write anything here....\n New line also looks cool" 18 | page0.showNextButton = true 19 | page0.delayBeforeShowing = 2.0 20 | 21 | 22 | let page1 = CIPageView() 23 | page1.headingLabel?.text = "SECOND PAGE" 24 | page1.showNextButton = true 25 | page1.delayBeforeShowing = 2.0 26 | 27 | let page2 = CIPageView(customNib: UINib.init(nibName: "CustomPageView", bundle: nil)) 28 | page2.headingLabel?.text = "THIRD PAGE" 29 | page2.showNextButton = true 30 | self.pages = [page0, page1, page2] 31 | 32 | super.viewDidLoad() 33 | 34 | self.scrollView.isScrollEnabled = false 35 | self.nextButton.backgroundColor = UIColor.init(red: 0.75, green: 0.65, blue: 0.32, alpha: 0.8) 36 | self.nextButton.tintColor = UIColor.white 37 | self.pageControl.isHidden = true 38 | //self.confettiType = .Diamond 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /Example/TZConfettiIntro/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // TZConfettiIntro 4 | // 5 | // Created by Taseen on 12/25/2016. 6 | // Copyright (c) 2016 Taseen. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import TZConfettiIntro 11 | 12 | class ViewController: UIViewController { 13 | 14 | override func viewDidLoad() { 15 | super.viewDidLoad() 16 | 17 | 18 | /// GET BUNDLE TO LOAD NIB 19 | let path = Bundle(for: TZConfettiIntroViewController.self).path(forResource: "TZConfettiIntro", ofType: "bundle") 20 | let bundle = Bundle(path: path!) 21 | let controller = NewFeatureIntroViewController(nibName: "TZConfettiIntroViewController", bundle: bundle) 22 | self.navigationController?.pushViewController(controller, animated: false) 23 | } 24 | 25 | override func didReceiveMemoryWarning() { 26 | super.didReceiveMemoryWarning() 27 | // Dispose of any resources that can be recreated. 28 | } 29 | 30 | } 31 | 32 | -------------------------------------------------------------------------------- /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 UIKit 2 | import XCTest 3 | import TZConfettiIntro 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measure() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 Taseen 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 | # TZConfettiIntro 2 | 3 | #[![CI Status](http://img.shields.io/travis/Taseen/TZConfettiIntro.svg?style=flat)](https://travis-ci.org/Taseen/TZConfettiIntro) 4 | [![Version](https://img.shields.io/cocoapods/v/TZConfettiIntro.svg?style=flat)](http://cocoapods.org/pods/TZConfettiIntro) 5 | [![License](https://img.shields.io/cocoapods/l/TZConfettiIntro.svg?style=flat)](http://cocoapods.org/pods/TZConfettiIntro) 6 | [![Platform](https://img.shields.io/cocoapods/p/TZConfettiIntro.svg?style=flat)](http://cocoapods.org/pods/TZConfettiIntro) 7 | 8 |

9 | confetti 10 |

11 | 12 | ## Usage 13 | 14 | Subclass TZConfettiIntroViewController 15 | ```swift 16 | class NewFeatureIntroViewController: TZConfettiIntroViewController 17 | ``` 18 | In viewDidLoad() method, before super.viewDidLoad(). Create CIPageView as needed. You can use the default nib or create your own nib and pass it 19 | ```swift 20 | override func viewDidLoad() { 21 | let page0 = CIPageView() 22 | page0.headingLabel?.text = "FIRST PAGE" 23 | page0.bodyLabel?.text = "You can write anything here....\n New line also looks cool" 24 | page0.showNextButton = true 25 | page0.delayBeforeShowing = 2.0 26 | 27 | 28 | let page1 = CIPageView() 29 | page1.headingLabel?.text = "SECOND PAGE" 30 | page1.showNextButton = true 31 | page1.delayBeforeShowing = 2.0 32 | 33 | let page2 = CIPageView(customNib: UINib.init(nibName: "CustomPageView", bundle: nil)) 34 | page2.headingLabel?.text = "THIRD PAGE" 35 | page2.showNextButton = true 36 | self.pages = [page0, page1, page2] 37 | 38 | super.viewDidLoad() 39 | 40 | self.scrollView.isScrollEnabled = false 41 | self.nextButton.backgroundColor = UIColor.init(red: 0.75, green: 0.65, blue: 0.32, alpha: 0.8) 42 | self.nextButton.tintColor = UIColor.white 43 | self.pageControl.isHidden = true 44 | 45 | } 46 | ``` 47 | 48 | ## Example 49 | 50 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 51 | 52 | 53 | ## Installation 54 | 55 | TZConfettiIntro is available through [CocoaPods](http://cocoapods.org). To install 56 | it, simply add the following line to your Podfile: 57 | 58 | #### ⚠️ **To use with Swift 2.3 please ensure you are using == 1.0.3** ⚠️ 59 | #### ⚠️ **To use with Swift 3.x please ensure you are using >= 2.0.4** ⚠️ 60 | 61 | ```ruby 62 | pod "TZConfettiIntro" 63 | ``` 64 | 65 | ## Contribution 66 | 67 | Thanks to Sudeep Agarwal whose [SAConfettiView](https://www.google.com "SAConfettiView") made this project easy to complete. Please check his documentation to change the confetti type. 68 | 69 | 70 | ## Author 71 | 72 | Taseen, tahseen0amin@gmail.com 73 | 74 | ## License 75 | Copyright (c) 2017 Tasin Zarkoob 76 | TZConfettiIntro is available under the MIT license. See the LICENSE file for more info. 77 | -------------------------------------------------------------------------------- /TZConfettiIntro.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint TZConfettiIntro.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 http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'TZConfettiIntro' 11 | s.version = '2.0.4' 12 | s.summary = 'Intro Controller with confetti. more info coming soon' 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 | A Simple Intro View Controller with confetti animation. Thanks to Sudeep Agarwal, I didn't have to write code for generating confetti. I used his library (SAConfettiView) in my project 22 | DESC 23 | 24 | s.homepage = 'https://github.com/tahseen0amin/TZConfettiIntro' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'Taseen' => 'tahseen0amin@gmail.com' } 28 | s.source = { :git => 'https://github.com/tahseen0amin/TZConfettiIntro.git', :tag => s.version.to_s } 29 | s.social_media_url = 'https://twitter.com/taseenAmin' 30 | 31 | s.ios.deployment_target = '8.0' 32 | 33 | s.source_files = 'TZConfettiIntro/Classes/**/*' 34 | 35 | s.resource_bundles = { 36 | 'TZConfettiIntro' => ['TZConfettiIntro/Assets/*.png','TZConfettiIntro/Assets/*.xib'] 37 | } 38 | 39 | # s.public_header_files = 'Pod/Classes/**/*.h' 40 | s.frameworks = 'UIKit', 'QuartzCore' 41 | # s.dependency 'SAConfettiView' 42 | end 43 | -------------------------------------------------------------------------------- /TZConfettiIntro/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahseen0amin/TZConfettiIntro/cd6bba65b2b98c3e4537c90f1f68e1a59e8b1468/TZConfettiIntro/Assets/.gitkeep -------------------------------------------------------------------------------- /TZConfettiIntro/Assets/CIPageView.xib: -------------------------------------------------------------------------------- 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 | 35 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /TZConfettiIntro/Assets/TZConfettiIntroViewController.xib: -------------------------------------------------------------------------------- 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 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /TZConfettiIntro/Assets/confetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahseen0amin/TZConfettiIntro/cd6bba65b2b98c3e4537c90f1f68e1a59e8b1468/TZConfettiIntro/Assets/confetti.png -------------------------------------------------------------------------------- /TZConfettiIntro/Assets/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahseen0amin/TZConfettiIntro/cd6bba65b2b98c3e4537c90f1f68e1a59e8b1468/TZConfettiIntro/Assets/diamond.png -------------------------------------------------------------------------------- /TZConfettiIntro/Assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahseen0amin/TZConfettiIntro/cd6bba65b2b98c3e4537c90f1f68e1a59e8b1468/TZConfettiIntro/Assets/star.png -------------------------------------------------------------------------------- /TZConfettiIntro/Assets/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahseen0amin/TZConfettiIntro/cd6bba65b2b98c3e4537c90f1f68e1a59e8b1468/TZConfettiIntro/Assets/triangle.png -------------------------------------------------------------------------------- /TZConfettiIntro/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahseen0amin/TZConfettiIntro/cd6bba65b2b98c3e4537c90f1f68e1a59e8b1468/TZConfettiIntro/Classes/.gitkeep -------------------------------------------------------------------------------- /TZConfettiIntro/Classes/CIPageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CIPageView.swift 3 | // Confeti-Intro 4 | // 5 | // Created by Taseen Amin on 17/12/2016. 6 | // Copyright © 2016 Taazuh. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | open class CIPageView: UIView { 12 | 13 | @IBOutlet open var contentView : UIView? 14 | @IBOutlet open weak var imageView: UIImageView? 15 | @IBOutlet open weak var headingLabel: UILabel? 16 | @IBOutlet open weak var bodyLabel: UILabel? 17 | @IBOutlet open var confitiView : UIView? 18 | 19 | open var pageNumber:Int = 0 20 | open var showNextButton = false 21 | open var delayBeforeShowing : TimeInterval = 0.0 22 | public var nextButtonTitle = "Next" 23 | 24 | override init(frame: CGRect) { 25 | super.init(frame: frame) 26 | self.commonInit() 27 | } 28 | 29 | required public init?(coder aDecoder: NSCoder) { 30 | super.init(coder: aDecoder) 31 | self.commonInit() 32 | } 33 | 34 | public convenience init(customNib: UINib?) { 35 | self.init() 36 | if customNib != nil { 37 | let view = customNib!.instantiate(withOwner: self, options: nil)[0] as! UIView 38 | contentView = view 39 | self.addSubViewWithConstraint(subview: contentView!, inset: .zero) 40 | } else { 41 | self.commonInit() 42 | } 43 | 44 | } 45 | 46 | private func commonInit() { 47 | let path = Bundle(for: CIPageView.self).path(forResource: "TZConfettiIntro", ofType: "bundle") 48 | let bundle = Bundle(path: path!) 49 | let view = bundle?.loadNibNamed("CIPageView", owner: self, options: nil)![0] as! UIView 50 | contentView = view 51 | self.frame = UIScreen.main.bounds 52 | self.addSubViewWithConstraint(subview: contentView!, inset: .zero) 53 | } 54 | 55 | /// Do any time of changes here 56 | open func setupPage(){ 57 | } 58 | 59 | } 60 | 61 | extension UIView { 62 | 63 | func addSubViewWithConstraint(subview:UIView, inset:UIEdgeInsets) { 64 | let view = self 65 | view.addSubview(subview) 66 | subview.frame = CGRect(x: inset.left, y: inset.top, width: view.frame.size.width-inset.right, height: view.frame.size.height-inset.bottom) 67 | view.clipsToBounds = true 68 | 69 | view.addConstraint(NSLayoutConstraint.init(item: subview, attribute: .leading, relatedBy: .equal, toItem: view, attribute: .leading, multiplier: 1, constant: inset.left)) 70 | 71 | view.addConstraint(NSLayoutConstraint.init(item: subview, attribute: .trailing, relatedBy: .equal, toItem: view, attribute: .trailing, multiplier: 1, constant: inset.right)) 72 | 73 | view.addConstraint(NSLayoutConstraint.init(item: subview, attribute: .top, relatedBy: .equal, toItem: view, attribute: .top, multiplier: 1, constant: inset.top)) 74 | 75 | view.addConstraint(NSLayoutConstraint.init(item: subview, attribute: .bottom, relatedBy: .equal, toItem: view, attribute: .bottom, multiplier: 1, constant: inset.bottom)) 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /TZConfettiIntro/Classes/SAConfettiView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SAConfettiView.swift 3 | // Pods 4 | // 5 | // Created by Sudeep Agarwal on 12/14/15. 6 | // 7 | // 8 | 9 | import UIKit 10 | import QuartzCore 11 | 12 | public enum ConfettiType { 13 | case Confetti 14 | case Triangle 15 | case Star 16 | case Diamond 17 | case Image(UIImage) 18 | } 19 | 20 | open class SAConfettiView: UIView { 21 | 22 | var emitter: CAEmitterLayer! 23 | open var colors: [UIColor]! 24 | open var intensity: Float! 25 | open var type: ConfettiType! 26 | private var active :Bool! 27 | 28 | required public init?(coder aDecoder: NSCoder) { 29 | super.init(coder: aDecoder) 30 | setup() 31 | } 32 | 33 | public override init(frame: CGRect) { 34 | super.init(frame: frame) 35 | setup() 36 | } 37 | 38 | func setup() { 39 | colors = [UIColor(red:0.95, green:0.40, blue:0.27, alpha:1.0), 40 | UIColor(red:1.00, green:0.78, blue:0.36, alpha:1.0), 41 | UIColor(red:0.48, green:0.78, blue:0.64, alpha:1.0), 42 | UIColor(red:0.30, green:0.76, blue:0.85, alpha:1.0), 43 | UIColor(red:0.58, green:0.39, blue:0.55, alpha:1.0)] 44 | intensity = 0.5 45 | type = .Confetti 46 | active = false 47 | } 48 | 49 | open func startConfetti() { 50 | emitter = CAEmitterLayer() 51 | 52 | emitter.emitterPosition = CGPoint(x: frame.size.width / 2.0, y: 0) 53 | emitter.emitterShape = kCAEmitterLayerLine 54 | emitter.emitterSize = CGSize(width: frame.size.width, height: 1) 55 | 56 | var cells = [CAEmitterCell]() 57 | for color in colors { 58 | cells.append(confettiWithColor(color: color)) 59 | } 60 | 61 | emitter.emitterCells = cells 62 | layer.addSublayer(emitter) 63 | active = true 64 | } 65 | 66 | open func stopConfetti() { 67 | emitter?.birthRate = 0 68 | active = false 69 | } 70 | 71 | func imageForType(type: ConfettiType) -> UIImage? { 72 | 73 | var fileName: String! 74 | 75 | switch type { 76 | case .Confetti: 77 | fileName = "confetti" 78 | case .Triangle: 79 | fileName = "triangle" 80 | case .Star: 81 | fileName = "star" 82 | case .Diamond: 83 | fileName = "diamond" 84 | case let .Image(customImage): 85 | return customImage 86 | } 87 | 88 | let path = Bundle(for: SAConfettiView.self).path(forResource: "TZConfettiIntro", ofType: "bundle") 89 | let bundle = Bundle(path: path!) 90 | let imagePath = bundle?.path(forResource: fileName, ofType: "png") 91 | let url = NSURL(fileURLWithPath: imagePath!) 92 | let data = NSData(contentsOf: url as URL) 93 | if let data = data { 94 | return UIImage(data: data as Data)! 95 | } 96 | return nil 97 | } 98 | 99 | func confettiWithColor(color: UIColor) -> CAEmitterCell { 100 | let confetti = CAEmitterCell() 101 | confetti.birthRate = 6.0 * intensity 102 | confetti.lifetime = 14.0 * intensity 103 | confetti.lifetimeRange = 0 104 | confetti.color = color.cgColor 105 | confetti.velocity = CGFloat(350.0 * intensity) 106 | confetti.velocityRange = CGFloat(80.0 * intensity) 107 | confetti.emissionLongitude = CGFloat(M_PI) 108 | confetti.emissionRange = CGFloat(M_PI_4) 109 | confetti.spin = CGFloat(3.5 * intensity) 110 | confetti.spinRange = CGFloat(4.0 * intensity) 111 | confetti.scaleRange = CGFloat(intensity) 112 | confetti.scaleSpeed = CGFloat(-0.1 * intensity) 113 | confetti.contents = imageForType(type: type)!.cgImage 114 | return confetti 115 | } 116 | 117 | open func isActive() -> Bool { 118 | return self.active 119 | } 120 | } 121 | -------------------------------------------------------------------------------- /TZConfettiIntro/Classes/TZConfettiIntroViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ConfettiItroViewController.swift 3 | // Confeti-Intro 4 | // 5 | // Created by Taseen Amin on 18/12/2016. 6 | // Copyright © 2016 Taazuh. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | open class TZConfettiIntroViewController: UIViewController, UIScrollViewDelegate { 12 | @IBOutlet public weak var scrollView: UIScrollView! 13 | @IBOutlet public weak var pageControl: UIPageControl! 14 | @IBOutlet public weak var nextButton: UIButton! { 15 | didSet { 16 | self.nextButton.isHidden = true 17 | self.nextButton.addTarget(self, action: #selector(self.nextClicked), for: .touchUpInside) 18 | } 19 | } 20 | public var pages : [CIPageView]! = [] 21 | 22 | public var currentPage : CIPageView! { 23 | didSet { 24 | self.setupPage() 25 | } 26 | } 27 | 28 | private var confettiView : SAConfettiView! 29 | public var confettiType : ConfettiType = ConfettiType.Confetti 30 | open var showConfetti = true 31 | 32 | public class func getControllerObject() -> TZConfettiIntroViewController { 33 | let nameNib = "TZConfettiIntroViewController" 34 | let path = Bundle(for: TZConfettiIntroViewController.self).path(forResource: "TZConfettiIntro", ofType: "bundle") 35 | let bundle = Bundle(path: path!) 36 | let object = TZConfettiIntroViewController.init(nibName: nameNib, bundle: bundle) 37 | return object 38 | } 39 | 40 | open override func viewDidLoad() { 41 | super.viewDidLoad() 42 | self.setupScrollView() 43 | self.confettiView = SAConfettiView(frame: self.scrollView.bounds) 44 | self.scrollView.addSubview(self.confettiView) 45 | } 46 | 47 | override open func viewWillAppear(_ animated: Bool) { 48 | super.viewWillAppear(animated) 49 | if showConfetti { 50 | self.confettiView.type = self.confettiType 51 | self.confettiView.startConfetti() 52 | } 53 | } 54 | 55 | override open func didReceiveMemoryWarning() { 56 | super.didReceiveMemoryWarning() 57 | // Dispose of any resources that can be recreated. 58 | } 59 | 60 | private func setupScrollView() { 61 | self.scrollView.frame = UIScreen.main.bounds 62 | self.scrollView.delegate = self 63 | self.scrollView.isScrollEnabled = true 64 | self.scrollView.isPagingEnabled = true 65 | self.scrollView.showsVerticalScrollIndicator = false 66 | self.scrollView.showsHorizontalScrollIndicator = false 67 | self.pageControl.numberOfPages = self.pages.count 68 | self.pageControl.currentPage = 0 69 | //add pages 70 | var index = 0 71 | while index < self.pages.count { 72 | self.scrollView.addSubview(self.pages[index]) 73 | self.pages[index].pageNumber = index 74 | index += 1 75 | } 76 | self.view.sendSubview(toBack: self.scrollView) 77 | self.currentPage = self.pages[0] 78 | } 79 | 80 | 81 | override open func viewWillLayoutSubviews() { 82 | super.viewWillLayoutSubviews() 83 | let size = scrollView.bounds.size 84 | let pageCount = CGFloat(self.pages.count) 85 | self.scrollView.contentSize = CGSize(width: size.width*pageCount, height: size.height) 86 | self.scrollView.contentInset = UIEdgeInsets.zero 87 | for p1 in pages { 88 | p1.frame = CGRect(x: size.width*CGFloat(p1.pageNumber), y: 0, width: size.width, height: size.height) 89 | } 90 | } 91 | 92 | //MARK: Scrollview 93 | public func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) { 94 | let pageWidth:CGFloat = scrollView.frame.width 95 | let currentPage:CGFloat = floor((scrollView.contentOffset.x-pageWidth/2)/pageWidth)+1 96 | // Change the indicator 97 | self.pageControl.currentPage = Int(currentPage) 98 | self.currentPage = self.pages[Int(currentPage)] 99 | } 100 | 101 | private func setupPage(){ 102 | self.nextButton.isHidden = true 103 | self.nextButton.setTitle("", for: .normal) 104 | if self.currentPage.showNextButton { 105 | self.perform(#selector(self.shownextButton), with: nil, afterDelay: self.currentPage.delayBeforeShowing) 106 | } 107 | } 108 | 109 | @objc private func shownextButton(){ 110 | self.nextButton.isHidden = false 111 | self.nextButton.setTitle(self.currentPage.nextButtonTitle, for: .normal) 112 | } 113 | 114 | public func skipOrLastPageButtonClicked(){ 115 | if self.navigationController != nil { 116 | self.navigationController!.popViewController(animated: true) 117 | } else if self.presentingViewController != nil { 118 | self.presentingViewController?.dismiss(animated: true, completion: nil) 119 | } 120 | } 121 | 122 | @objc private func nextClicked(){ 123 | 124 | if self.currentPage.pageNumber == self.pages.count-1 { 125 | // finish button clicked 126 | self.skipOrLastPageButtonClicked() 127 | } else { 128 | let nextPageIndex = self.currentPage.pageNumber + 1 129 | // Change the indicator 130 | self.pageControl.currentPage = nextPageIndex 131 | self.currentPage = self.pages[nextPageIndex] 132 | self.scrollView.scrollRectToVisible(self.currentPage.frame, animated: true) 133 | } 134 | } 135 | 136 | public func scrollViewDidScroll(_ scrollView: UIScrollView) { 137 | // update the frame of confetti View 138 | var frame = self.confettiView.frame 139 | frame.origin = scrollView.contentOffset 140 | self.confettiView.frame = frame 141 | } 142 | 143 | public func startConfetti(){ 144 | if self.confettiView.isActive() == false { 145 | self.confettiView.startConfetti() 146 | } 147 | } 148 | 149 | public func stopConfetti(){ 150 | self.confettiView.stopConfetti() 151 | } 152 | 153 | } 154 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------