├── .gitignore ├── BLMultiColorLoader ├── .gitignore ├── .travis.yml ├── BLMultiColorLoader.podspec ├── Example │ ├── BLMultiColorLoader.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BLMultiColorLoader-Example.xcscheme │ ├── BLMultiColorLoader.xcworkspace │ │ └── contents.xcworkspacedata │ ├── BLMultiColorLoader │ │ ├── BLAppDelegate.h │ │ ├── BLAppDelegate.m │ │ ├── BLMultiColorLoader-Info.plist │ │ ├── BLMultiColorLoader-Prefix.pch │ │ ├── BLViewController.h │ │ ├── BLViewController.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── Main.storyboard │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── Headers │ │ │ └── Private │ │ │ │ └── BLMultiColorLoader │ │ │ │ └── BLMultiColorLoader.h │ │ ├── Local Podspecs │ │ │ └── BLMultiColorLoader.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BLMultiColorLoader.xcscheme │ │ └── Target Support Files │ │ │ ├── BLMultiColorLoader │ │ │ ├── BLMultiColorLoader-dummy.m │ │ │ ├── BLMultiColorLoader-prefix.pch │ │ │ ├── BLMultiColorLoader-umbrella.h │ │ │ ├── BLMultiColorLoader.modulemap │ │ │ ├── BLMultiColorLoader.xcconfig │ │ │ └── Info.plist │ │ │ ├── Pods-BLMultiColorLoader_Example │ │ │ ├── Info.plist │ │ │ ├── Pods-BLMultiColorLoader_Example-acknowledgements.markdown │ │ │ ├── Pods-BLMultiColorLoader_Example-acknowledgements.plist │ │ │ ├── Pods-BLMultiColorLoader_Example-dummy.m │ │ │ ├── Pods-BLMultiColorLoader_Example-frameworks.sh │ │ │ ├── Pods-BLMultiColorLoader_Example-resources.sh │ │ │ ├── Pods-BLMultiColorLoader_Example-umbrella.h │ │ │ ├── Pods-BLMultiColorLoader_Example.debug.xcconfig │ │ │ ├── Pods-BLMultiColorLoader_Example.modulemap │ │ │ └── Pods-BLMultiColorLoader_Example.release.xcconfig │ │ │ └── Pods-BLMultiColorLoader_Tests │ │ │ ├── Info.plist │ │ │ ├── Pods-BLMultiColorLoader_Tests-acknowledgements.markdown │ │ │ ├── Pods-BLMultiColorLoader_Tests-acknowledgements.plist │ │ │ ├── Pods-BLMultiColorLoader_Tests-dummy.m │ │ │ ├── Pods-BLMultiColorLoader_Tests-frameworks.sh │ │ │ ├── Pods-BLMultiColorLoader_Tests-resources.sh │ │ │ ├── Pods-BLMultiColorLoader_Tests-umbrella.h │ │ │ ├── Pods-BLMultiColorLoader_Tests.debug.xcconfig │ │ │ ├── Pods-BLMultiColorLoader_Tests.modulemap │ │ │ └── Pods-BLMultiColorLoader_Tests.release.xcconfig │ └── Tests │ │ ├── Tests-Info.plist │ │ ├── Tests-Prefix.pch │ │ ├── Tests.m │ │ └── en.lproj │ │ └── InfoPlist.strings ├── LICENSE ├── Pod │ ├── Assets │ │ └── .gitkeep │ └── Classes │ │ ├── .gitkeep │ │ ├── BLMultiColorLoader.h │ │ └── BLMultiColorLoader.m ├── README.md └── _Pods.xcodeproj ├── Classes ├── BLMultiColorLoader.h └── BLMultiColorLoader.m ├── DemoForBasicUsage ├── Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── BLMultiColorLoader.h │ ├── BLMultiColorLoader.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── DemoTests │ ├── DemoTests.m │ └── Info.plist ├── LICENSE ├── README.md └── Screens └── loader_screenshot.gif /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | build/ 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | *.xccheckout 14 | *.moved-aside 15 | DerivedData 16 | *.hmap 17 | *.ipa 18 | *.xcuserstate 19 | 20 | # CocoaPods 21 | # 22 | # We recommend against adding the Pods directory to your .gitignore. However 23 | # you should judge for yourself, the pros and cons are mentioned at: 24 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 25 | # 26 | #Pods/ 27 | -------------------------------------------------------------------------------- /BLMultiColorLoader/.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 | -------------------------------------------------------------------------------- /BLMultiColorLoader/.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | language: objective-c 6 | # cache: cocoapods 7 | # podfile: Example/Podfile 8 | # before_install: 9 | # - gem install cocoapods # Since Travis is not always on latest version 10 | # - pod install --project-directory=Example 11 | script: 12 | - set -o pipefail && xcodebuild test -workspace Example/BLMultiColorLoader.xcworkspace -scheme BLMultiColorLoader-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty 13 | - pod lib lint 14 | -------------------------------------------------------------------------------- /BLMultiColorLoader/BLMultiColorLoader.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "BLMultiColorLoader" 3 | s.version = "0.1.6" 4 | s.summary = "This is the pod version of BLMultiColorHeader." 5 | s.description = <<-DESC 6 | Simple, easy to use, Multi coloured and customisable loading indicator (loader) for iOS applications. 7 | DESC 8 | 9 | s.homepage = "https://github.com/BLPoonia/BLMultiColorLoader" 10 | s.screenshots = "https://raw.githubusercontent.com/BLPoonia/BLMultiColorLoader/master/Screens/loader_screenshot.gif" 11 | s.license = 'MIT' 12 | s.author = { "Babulal Poonia" => "poonia.nitrkl@gmail.com", "Contribution - Herrick Wolber" => "wolbereric@yahoo.fr" } 13 | s.source = { :git => "https://github.com/BLPoonia/BLMultiColorLoader.git", :tag => s.version.to_s } 14 | s.social_media_url = 'https://twitter.com/__poonia' 15 | 16 | s.platform = :ios, '7.0' 17 | s.requires_arc = true 18 | 19 | s.source_files = 'BLMultiColorLoader/Pod/Classes/**/*' 20 | s.resource_bundles = { 21 | 'BLMultiColorLoader' => ['BLMultiColorLoader/Pod/Assets/*.png'] 22 | } 23 | s.public_header_files = 'BLMultiColorLoader/Pod/Classes/**/*.h' 24 | s.frameworks = 'UIKit' 25 | end 26 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3196CB2229D61448CA3D6227 /* Pods_BLMultiColorLoader_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B2D19C44AE94EB6E50AB2409 /* Pods_BLMultiColorLoader_Tests.framework */; }; 11 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 12 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 13 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 14 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 15 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 16 | 6003F59E195388D20070C39A /* BLAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* BLAppDelegate.m */; }; 17 | 6003F5A7195388D20070C39A /* BLViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* BLViewController.m */; }; 18 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 19 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 20 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 21 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 22 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 23 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 24 | 7DECEA0B7F3DBDE536745137 /* Pods_BLMultiColorLoader_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 268FAF4830CDE92F66C822F0 /* Pods_BLMultiColorLoader_Example.framework */; }; 25 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 6003F582195388D10070C39A /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 6003F589195388D20070C39A; 34 | remoteInfo = BLMultiColorLoader; 35 | }; 36 | /* End PBXContainerItemProxy section */ 37 | 38 | /* Begin PBXFileReference section */ 39 | 0BEE34653DEB8368B4457F10 /* Pods-BLMultiColorLoader_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BLMultiColorLoader_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests.debug.xcconfig"; sourceTree = ""; }; 40 | 268FAF4830CDE92F66C822F0 /* Pods_BLMultiColorLoader_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BLMultiColorLoader_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 38EED58BE6438D109A5BD921 /* Pods-BLMultiColorLoader_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BLMultiColorLoader_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example.release.xcconfig"; sourceTree = ""; }; 42 | 6003F58A195388D20070C39A /* BLMultiColorLoader_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BLMultiColorLoader_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 44 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 45 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 46 | 6003F595195388D20070C39A /* BLMultiColorLoader-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "BLMultiColorLoader-Info.plist"; sourceTree = ""; }; 47 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 48 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 49 | 6003F59B195388D20070C39A /* BLMultiColorLoader-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "BLMultiColorLoader-Prefix.pch"; sourceTree = ""; }; 50 | 6003F59C195388D20070C39A /* BLAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BLAppDelegate.h; sourceTree = ""; }; 51 | 6003F59D195388D20070C39A /* BLAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BLAppDelegate.m; sourceTree = ""; }; 52 | 6003F5A5195388D20070C39A /* BLViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BLViewController.h; sourceTree = ""; }; 53 | 6003F5A6195388D20070C39A /* BLViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BLViewController.m; sourceTree = ""; }; 54 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 55 | 6003F5AE195388D20070C39A /* BLMultiColorLoader_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BLMultiColorLoader_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 57 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 58 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 59 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 60 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 61 | 8587794A0A4E07F7C42ADF39 /* Pods-BLMultiColorLoader_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BLMultiColorLoader_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests.release.xcconfig"; sourceTree = ""; }; 62 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; 63 | ABED143E4F521052D8B17BE0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 64 | B2D19C44AE94EB6E50AB2409 /* Pods_BLMultiColorLoader_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BLMultiColorLoader_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 65 | C3EF4771948235282860CD23 /* Pods-BLMultiColorLoader_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BLMultiColorLoader_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example.debug.xcconfig"; sourceTree = ""; }; 66 | C72FB66DAF76A02EB54E6DEC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 67 | F971542CE2BC08DB050B2204 /* BLMultiColorLoader.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = BLMultiColorLoader.podspec; path = ../BLMultiColorLoader.podspec; sourceTree = ""; }; 68 | /* End PBXFileReference section */ 69 | 70 | /* Begin PBXFrameworksBuildPhase section */ 71 | 6003F587195388D20070C39A /* Frameworks */ = { 72 | isa = PBXFrameworksBuildPhase; 73 | buildActionMask = 2147483647; 74 | files = ( 75 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 76 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 77 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 78 | 7DECEA0B7F3DBDE536745137 /* Pods_BLMultiColorLoader_Example.framework in Frameworks */, 79 | ); 80 | runOnlyForDeploymentPostprocessing = 0; 81 | }; 82 | 6003F5AB195388D20070C39A /* Frameworks */ = { 83 | isa = PBXFrameworksBuildPhase; 84 | buildActionMask = 2147483647; 85 | files = ( 86 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 87 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 88 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 89 | 3196CB2229D61448CA3D6227 /* Pods_BLMultiColorLoader_Tests.framework in Frameworks */, 90 | ); 91 | runOnlyForDeploymentPostprocessing = 0; 92 | }; 93 | /* End PBXFrameworksBuildPhase section */ 94 | 95 | /* Begin PBXGroup section */ 96 | 229E326AC2A74AC83EFFEEF3 /* Pods */ = { 97 | isa = PBXGroup; 98 | children = ( 99 | C3EF4771948235282860CD23 /* Pods-BLMultiColorLoader_Example.debug.xcconfig */, 100 | 38EED58BE6438D109A5BD921 /* Pods-BLMultiColorLoader_Example.release.xcconfig */, 101 | 0BEE34653DEB8368B4457F10 /* Pods-BLMultiColorLoader_Tests.debug.xcconfig */, 102 | 8587794A0A4E07F7C42ADF39 /* Pods-BLMultiColorLoader_Tests.release.xcconfig */, 103 | ); 104 | name = Pods; 105 | sourceTree = ""; 106 | }; 107 | 6003F581195388D10070C39A = { 108 | isa = PBXGroup; 109 | children = ( 110 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 111 | 6003F593195388D20070C39A /* Example for BLMultiColorLoader */, 112 | 6003F5B5195388D20070C39A /* Tests */, 113 | 6003F58C195388D20070C39A /* Frameworks */, 114 | 6003F58B195388D20070C39A /* Products */, 115 | 229E326AC2A74AC83EFFEEF3 /* Pods */, 116 | ); 117 | sourceTree = ""; 118 | }; 119 | 6003F58B195388D20070C39A /* Products */ = { 120 | isa = PBXGroup; 121 | children = ( 122 | 6003F58A195388D20070C39A /* BLMultiColorLoader_Example.app */, 123 | 6003F5AE195388D20070C39A /* BLMultiColorLoader_Tests.xctest */, 124 | ); 125 | name = Products; 126 | sourceTree = ""; 127 | }; 128 | 6003F58C195388D20070C39A /* Frameworks */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 6003F58D195388D20070C39A /* Foundation.framework */, 132 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 133 | 6003F591195388D20070C39A /* UIKit.framework */, 134 | 6003F5AF195388D20070C39A /* XCTest.framework */, 135 | 268FAF4830CDE92F66C822F0 /* Pods_BLMultiColorLoader_Example.framework */, 136 | B2D19C44AE94EB6E50AB2409 /* Pods_BLMultiColorLoader_Tests.framework */, 137 | ); 138 | name = Frameworks; 139 | sourceTree = ""; 140 | }; 141 | 6003F593195388D20070C39A /* Example for BLMultiColorLoader */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | 6003F59C195388D20070C39A /* BLAppDelegate.h */, 145 | 6003F59D195388D20070C39A /* BLAppDelegate.m */, 146 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, 147 | 6003F5A5195388D20070C39A /* BLViewController.h */, 148 | 6003F5A6195388D20070C39A /* BLViewController.m */, 149 | 6003F5A8195388D20070C39A /* Images.xcassets */, 150 | 6003F594195388D20070C39A /* Supporting Files */, 151 | ); 152 | name = "Example for BLMultiColorLoader"; 153 | path = BLMultiColorLoader; 154 | sourceTree = ""; 155 | }; 156 | 6003F594195388D20070C39A /* Supporting Files */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | 6003F595195388D20070C39A /* BLMultiColorLoader-Info.plist */, 160 | 6003F596195388D20070C39A /* InfoPlist.strings */, 161 | 6003F599195388D20070C39A /* main.m */, 162 | 6003F59B195388D20070C39A /* BLMultiColorLoader-Prefix.pch */, 163 | ); 164 | name = "Supporting Files"; 165 | sourceTree = ""; 166 | }; 167 | 6003F5B5195388D20070C39A /* Tests */ = { 168 | isa = PBXGroup; 169 | children = ( 170 | 6003F5BB195388D20070C39A /* Tests.m */, 171 | 6003F5B6195388D20070C39A /* Supporting Files */, 172 | ); 173 | path = Tests; 174 | sourceTree = ""; 175 | }; 176 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 177 | isa = PBXGroup; 178 | children = ( 179 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 180 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 181 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 182 | ); 183 | name = "Supporting Files"; 184 | sourceTree = ""; 185 | }; 186 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 187 | isa = PBXGroup; 188 | children = ( 189 | F971542CE2BC08DB050B2204 /* BLMultiColorLoader.podspec */, 190 | C72FB66DAF76A02EB54E6DEC /* README.md */, 191 | ABED143E4F521052D8B17BE0 /* LICENSE */, 192 | ); 193 | name = "Podspec Metadata"; 194 | sourceTree = ""; 195 | }; 196 | /* End PBXGroup section */ 197 | 198 | /* Begin PBXNativeTarget section */ 199 | 6003F589195388D20070C39A /* BLMultiColorLoader_Example */ = { 200 | isa = PBXNativeTarget; 201 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "BLMultiColorLoader_Example" */; 202 | buildPhases = ( 203 | A3AE74F3C99970C114BC7795 /* Check Pods Manifest.lock */, 204 | 6003F586195388D20070C39A /* Sources */, 205 | 6003F587195388D20070C39A /* Frameworks */, 206 | 6003F588195388D20070C39A /* Resources */, 207 | 4CF52F27FB7D125378FF247A /* Embed Pods Frameworks */, 208 | DF35A95AADCF6E3D765B35F5 /* Copy Pods Resources */, 209 | ); 210 | buildRules = ( 211 | ); 212 | dependencies = ( 213 | ); 214 | name = BLMultiColorLoader_Example; 215 | productName = BLMultiColorLoader; 216 | productReference = 6003F58A195388D20070C39A /* BLMultiColorLoader_Example.app */; 217 | productType = "com.apple.product-type.application"; 218 | }; 219 | 6003F5AD195388D20070C39A /* BLMultiColorLoader_Tests */ = { 220 | isa = PBXNativeTarget; 221 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "BLMultiColorLoader_Tests" */; 222 | buildPhases = ( 223 | E938716EEB88BCCF893C1506 /* Check Pods Manifest.lock */, 224 | 6003F5AA195388D20070C39A /* Sources */, 225 | 6003F5AB195388D20070C39A /* Frameworks */, 226 | 6003F5AC195388D20070C39A /* Resources */, 227 | A2E6D52A91160F75077F36F9 /* Embed Pods Frameworks */, 228 | B0385C4B4A894738EBD4E639 /* Copy Pods Resources */, 229 | ); 230 | buildRules = ( 231 | ); 232 | dependencies = ( 233 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 234 | ); 235 | name = BLMultiColorLoader_Tests; 236 | productName = BLMultiColorLoaderTests; 237 | productReference = 6003F5AE195388D20070C39A /* BLMultiColorLoader_Tests.xctest */; 238 | productType = "com.apple.product-type.bundle.unit-test"; 239 | }; 240 | /* End PBXNativeTarget section */ 241 | 242 | /* Begin PBXProject section */ 243 | 6003F582195388D10070C39A /* Project object */ = { 244 | isa = PBXProject; 245 | attributes = { 246 | CLASSPREFIX = BL; 247 | LastUpgradeCheck = 0720; 248 | ORGANIZATIONNAME = "Babulal Poonia"; 249 | TargetAttributes = { 250 | 6003F5AD195388D20070C39A = { 251 | TestTargetID = 6003F589195388D20070C39A; 252 | }; 253 | }; 254 | }; 255 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "BLMultiColorLoader" */; 256 | compatibilityVersion = "Xcode 3.2"; 257 | developmentRegion = English; 258 | hasScannedForEncodings = 0; 259 | knownRegions = ( 260 | en, 261 | Base, 262 | ); 263 | mainGroup = 6003F581195388D10070C39A; 264 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 265 | projectDirPath = ""; 266 | projectRoot = ""; 267 | targets = ( 268 | 6003F589195388D20070C39A /* BLMultiColorLoader_Example */, 269 | 6003F5AD195388D20070C39A /* BLMultiColorLoader_Tests */, 270 | ); 271 | }; 272 | /* End PBXProject section */ 273 | 274 | /* Begin PBXResourcesBuildPhase section */ 275 | 6003F588195388D20070C39A /* Resources */ = { 276 | isa = PBXResourcesBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, 280 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 281 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 282 | ); 283 | runOnlyForDeploymentPostprocessing = 0; 284 | }; 285 | 6003F5AC195388D20070C39A /* Resources */ = { 286 | isa = PBXResourcesBuildPhase; 287 | buildActionMask = 2147483647; 288 | files = ( 289 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 290 | ); 291 | runOnlyForDeploymentPostprocessing = 0; 292 | }; 293 | /* End PBXResourcesBuildPhase section */ 294 | 295 | /* Begin PBXShellScriptBuildPhase section */ 296 | 4CF52F27FB7D125378FF247A /* Embed Pods Frameworks */ = { 297 | isa = PBXShellScriptBuildPhase; 298 | buildActionMask = 2147483647; 299 | files = ( 300 | ); 301 | inputPaths = ( 302 | ); 303 | name = "Embed Pods Frameworks"; 304 | outputPaths = ( 305 | ); 306 | runOnlyForDeploymentPostprocessing = 0; 307 | shellPath = /bin/sh; 308 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example-frameworks.sh\"\n"; 309 | showEnvVarsInLog = 0; 310 | }; 311 | A2E6D52A91160F75077F36F9 /* Embed Pods Frameworks */ = { 312 | isa = PBXShellScriptBuildPhase; 313 | buildActionMask = 2147483647; 314 | files = ( 315 | ); 316 | inputPaths = ( 317 | ); 318 | name = "Embed Pods Frameworks"; 319 | outputPaths = ( 320 | ); 321 | runOnlyForDeploymentPostprocessing = 0; 322 | shellPath = /bin/sh; 323 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests-frameworks.sh\"\n"; 324 | showEnvVarsInLog = 0; 325 | }; 326 | A3AE74F3C99970C114BC7795 /* Check Pods Manifest.lock */ = { 327 | isa = PBXShellScriptBuildPhase; 328 | buildActionMask = 2147483647; 329 | files = ( 330 | ); 331 | inputPaths = ( 332 | ); 333 | name = "Check Pods Manifest.lock"; 334 | outputPaths = ( 335 | ); 336 | runOnlyForDeploymentPostprocessing = 0; 337 | shellPath = /bin/sh; 338 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 339 | showEnvVarsInLog = 0; 340 | }; 341 | B0385C4B4A894738EBD4E639 /* Copy Pods Resources */ = { 342 | isa = PBXShellScriptBuildPhase; 343 | buildActionMask = 2147483647; 344 | files = ( 345 | ); 346 | inputPaths = ( 347 | ); 348 | name = "Copy Pods Resources"; 349 | outputPaths = ( 350 | ); 351 | runOnlyForDeploymentPostprocessing = 0; 352 | shellPath = /bin/sh; 353 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests-resources.sh\"\n"; 354 | showEnvVarsInLog = 0; 355 | }; 356 | DF35A95AADCF6E3D765B35F5 /* Copy Pods Resources */ = { 357 | isa = PBXShellScriptBuildPhase; 358 | buildActionMask = 2147483647; 359 | files = ( 360 | ); 361 | inputPaths = ( 362 | ); 363 | name = "Copy Pods Resources"; 364 | outputPaths = ( 365 | ); 366 | runOnlyForDeploymentPostprocessing = 0; 367 | shellPath = /bin/sh; 368 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example-resources.sh\"\n"; 369 | showEnvVarsInLog = 0; 370 | }; 371 | E938716EEB88BCCF893C1506 /* Check Pods Manifest.lock */ = { 372 | isa = PBXShellScriptBuildPhase; 373 | buildActionMask = 2147483647; 374 | files = ( 375 | ); 376 | inputPaths = ( 377 | ); 378 | name = "Check Pods Manifest.lock"; 379 | outputPaths = ( 380 | ); 381 | runOnlyForDeploymentPostprocessing = 0; 382 | shellPath = /bin/sh; 383 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 384 | showEnvVarsInLog = 0; 385 | }; 386 | /* End PBXShellScriptBuildPhase section */ 387 | 388 | /* Begin PBXSourcesBuildPhase section */ 389 | 6003F586195388D20070C39A /* Sources */ = { 390 | isa = PBXSourcesBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | 6003F59E195388D20070C39A /* BLAppDelegate.m in Sources */, 394 | 6003F5A7195388D20070C39A /* BLViewController.m in Sources */, 395 | 6003F59A195388D20070C39A /* main.m in Sources */, 396 | ); 397 | runOnlyForDeploymentPostprocessing = 0; 398 | }; 399 | 6003F5AA195388D20070C39A /* Sources */ = { 400 | isa = PBXSourcesBuildPhase; 401 | buildActionMask = 2147483647; 402 | files = ( 403 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | /* End PBXSourcesBuildPhase section */ 408 | 409 | /* Begin PBXTargetDependency section */ 410 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 411 | isa = PBXTargetDependency; 412 | target = 6003F589195388D20070C39A /* BLMultiColorLoader_Example */; 413 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 414 | }; 415 | /* End PBXTargetDependency section */ 416 | 417 | /* Begin PBXVariantGroup section */ 418 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 419 | isa = PBXVariantGroup; 420 | children = ( 421 | 6003F597195388D20070C39A /* en */, 422 | ); 423 | name = InfoPlist.strings; 424 | sourceTree = ""; 425 | }; 426 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 427 | isa = PBXVariantGroup; 428 | children = ( 429 | 6003F5B9195388D20070C39A /* en */, 430 | ); 431 | name = InfoPlist.strings; 432 | sourceTree = ""; 433 | }; 434 | /* End PBXVariantGroup section */ 435 | 436 | /* Begin XCBuildConfiguration section */ 437 | 6003F5BD195388D20070C39A /* Debug */ = { 438 | isa = XCBuildConfiguration; 439 | buildSettings = { 440 | ALWAYS_SEARCH_USER_PATHS = NO; 441 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 442 | CLANG_CXX_LIBRARY = "libc++"; 443 | CLANG_ENABLE_MODULES = YES; 444 | CLANG_ENABLE_OBJC_ARC = YES; 445 | CLANG_WARN_BOOL_CONVERSION = YES; 446 | CLANG_WARN_CONSTANT_CONVERSION = YES; 447 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 448 | CLANG_WARN_EMPTY_BODY = YES; 449 | CLANG_WARN_ENUM_CONVERSION = YES; 450 | CLANG_WARN_INT_CONVERSION = YES; 451 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 452 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 453 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 454 | COPY_PHASE_STRIP = NO; 455 | ENABLE_TESTABILITY = YES; 456 | GCC_C_LANGUAGE_STANDARD = gnu99; 457 | GCC_DYNAMIC_NO_PIC = NO; 458 | GCC_OPTIMIZATION_LEVEL = 0; 459 | GCC_PREPROCESSOR_DEFINITIONS = ( 460 | "DEBUG=1", 461 | "$(inherited)", 462 | ); 463 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 464 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 465 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 466 | GCC_WARN_UNDECLARED_SELECTOR = YES; 467 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 468 | GCC_WARN_UNUSED_FUNCTION = YES; 469 | GCC_WARN_UNUSED_VARIABLE = YES; 470 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 471 | ONLY_ACTIVE_ARCH = YES; 472 | SDKROOT = iphoneos; 473 | TARGETED_DEVICE_FAMILY = "1,2"; 474 | }; 475 | name = Debug; 476 | }; 477 | 6003F5BE195388D20070C39A /* Release */ = { 478 | isa = XCBuildConfiguration; 479 | buildSettings = { 480 | ALWAYS_SEARCH_USER_PATHS = NO; 481 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 482 | CLANG_CXX_LIBRARY = "libc++"; 483 | CLANG_ENABLE_MODULES = YES; 484 | CLANG_ENABLE_OBJC_ARC = YES; 485 | CLANG_WARN_BOOL_CONVERSION = YES; 486 | CLANG_WARN_CONSTANT_CONVERSION = YES; 487 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 488 | CLANG_WARN_EMPTY_BODY = YES; 489 | CLANG_WARN_ENUM_CONVERSION = YES; 490 | CLANG_WARN_INT_CONVERSION = YES; 491 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 492 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 493 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 494 | COPY_PHASE_STRIP = YES; 495 | ENABLE_NS_ASSERTIONS = NO; 496 | GCC_C_LANGUAGE_STANDARD = gnu99; 497 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 498 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 499 | GCC_WARN_UNDECLARED_SELECTOR = YES; 500 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 501 | GCC_WARN_UNUSED_FUNCTION = YES; 502 | GCC_WARN_UNUSED_VARIABLE = YES; 503 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 504 | SDKROOT = iphoneos; 505 | TARGETED_DEVICE_FAMILY = "1,2"; 506 | VALIDATE_PRODUCT = YES; 507 | }; 508 | name = Release; 509 | }; 510 | 6003F5C0195388D20070C39A /* Debug */ = { 511 | isa = XCBuildConfiguration; 512 | baseConfigurationReference = C3EF4771948235282860CD23 /* Pods-BLMultiColorLoader_Example.debug.xcconfig */; 513 | buildSettings = { 514 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 515 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 516 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 517 | GCC_PREFIX_HEADER = "BLMultiColorLoader/BLMultiColorLoader-Prefix.pch"; 518 | INFOPLIST_FILE = "BLMultiColorLoader/BLMultiColorLoader-Info.plist"; 519 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 520 | MODULE_NAME = ExampleApp; 521 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 522 | PRODUCT_NAME = "$(TARGET_NAME)"; 523 | WRAPPER_EXTENSION = app; 524 | }; 525 | name = Debug; 526 | }; 527 | 6003F5C1195388D20070C39A /* Release */ = { 528 | isa = XCBuildConfiguration; 529 | baseConfigurationReference = 38EED58BE6438D109A5BD921 /* Pods-BLMultiColorLoader_Example.release.xcconfig */; 530 | buildSettings = { 531 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 532 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 533 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 534 | GCC_PREFIX_HEADER = "BLMultiColorLoader/BLMultiColorLoader-Prefix.pch"; 535 | INFOPLIST_FILE = "BLMultiColorLoader/BLMultiColorLoader-Info.plist"; 536 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 537 | MODULE_NAME = ExampleApp; 538 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 539 | PRODUCT_NAME = "$(TARGET_NAME)"; 540 | WRAPPER_EXTENSION = app; 541 | }; 542 | name = Release; 543 | }; 544 | 6003F5C3195388D20070C39A /* Debug */ = { 545 | isa = XCBuildConfiguration; 546 | baseConfigurationReference = 0BEE34653DEB8368B4457F10 /* Pods-BLMultiColorLoader_Tests.debug.xcconfig */; 547 | buildSettings = { 548 | BUNDLE_LOADER = "$(TEST_HOST)"; 549 | FRAMEWORK_SEARCH_PATHS = ( 550 | "$(SDKROOT)/Developer/Library/Frameworks", 551 | "$(inherited)", 552 | "$(DEVELOPER_FRAMEWORKS_DIR)", 553 | ); 554 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 555 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 556 | GCC_PREPROCESSOR_DEFINITIONS = ( 557 | "DEBUG=1", 558 | "$(inherited)", 559 | ); 560 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 561 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 562 | PRODUCT_NAME = "$(TARGET_NAME)"; 563 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BLMultiColorLoader_Example.app/BLMultiColorLoader_Example"; 564 | WRAPPER_EXTENSION = xctest; 565 | }; 566 | name = Debug; 567 | }; 568 | 6003F5C4195388D20070C39A /* Release */ = { 569 | isa = XCBuildConfiguration; 570 | baseConfigurationReference = 8587794A0A4E07F7C42ADF39 /* Pods-BLMultiColorLoader_Tests.release.xcconfig */; 571 | buildSettings = { 572 | BUNDLE_LOADER = "$(TEST_HOST)"; 573 | FRAMEWORK_SEARCH_PATHS = ( 574 | "$(SDKROOT)/Developer/Library/Frameworks", 575 | "$(inherited)", 576 | "$(DEVELOPER_FRAMEWORKS_DIR)", 577 | ); 578 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 579 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 580 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 581 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 582 | PRODUCT_NAME = "$(TARGET_NAME)"; 583 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BLMultiColorLoader_Example.app/BLMultiColorLoader_Example"; 584 | WRAPPER_EXTENSION = xctest; 585 | }; 586 | name = Release; 587 | }; 588 | /* End XCBuildConfiguration section */ 589 | 590 | /* Begin XCConfigurationList section */ 591 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "BLMultiColorLoader" */ = { 592 | isa = XCConfigurationList; 593 | buildConfigurations = ( 594 | 6003F5BD195388D20070C39A /* Debug */, 595 | 6003F5BE195388D20070C39A /* Release */, 596 | ); 597 | defaultConfigurationIsVisible = 0; 598 | defaultConfigurationName = Release; 599 | }; 600 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "BLMultiColorLoader_Example" */ = { 601 | isa = XCConfigurationList; 602 | buildConfigurations = ( 603 | 6003F5C0195388D20070C39A /* Debug */, 604 | 6003F5C1195388D20070C39A /* Release */, 605 | ); 606 | defaultConfigurationIsVisible = 0; 607 | defaultConfigurationName = Release; 608 | }; 609 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "BLMultiColorLoader_Tests" */ = { 610 | isa = XCConfigurationList; 611 | buildConfigurations = ( 612 | 6003F5C3195388D20070C39A /* Debug */, 613 | 6003F5C4195388D20070C39A /* Release */, 614 | ); 615 | defaultConfigurationIsVisible = 0; 616 | defaultConfigurationName = Release; 617 | }; 618 | /* End XCConfigurationList section */ 619 | }; 620 | rootObject = 6003F582195388D10070C39A /* Project object */; 621 | } 622 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader.xcodeproj/xcshareddata/xcschemes/BLMultiColorLoader-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/BLAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // BLAppDelegate.h 3 | // BLMultiColorLoader 4 | // 5 | // Created by Babulal Poonia on 03/12/2016. 6 | // Copyright (c) 2016 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface BLAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/BLAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // BLAppDelegate.m 3 | // BLMultiColorLoader 4 | // 5 | // Created by Babulal Poonia on 03/12/2016. 6 | // Copyright (c) 2016 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import "BLAppDelegate.h" 10 | 11 | @implementation BLAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // 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. 22 | // 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. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // 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. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 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 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // 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. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/BLMultiColorLoader-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/BLMultiColorLoader-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | @import UIKit; 15 | @import Foundation; 16 | #endif 17 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/BLViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BLViewController.h 3 | // BLMultiColorLoader 4 | // 5 | // Created by Babulal Poonia on 03/12/2016. 6 | // Copyright (c) 2016 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface BLViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/BLViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // BLViewController.m 3 | // BLMultiColorLoader 4 | // 5 | // Created by Babulal Poonia on 03/12/2016. 6 | // Copyright (c) 2016 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import "BLViewController.h" 10 | @import BLMultiColorLoader; 11 | 12 | @interface BLViewController () 13 | 14 | @end 15 | 16 | @implementation BLViewController 17 | 18 | - (void)viewDidLoad 19 | { 20 | [super viewDidLoad]; 21 | // Do any additional setup after loading the view, typically from a nib. 22 | BLMultiColorLoader*_multiColorLoader = [[BLMultiColorLoader alloc] initWithFrame:CGRectMake(50, 50, 50,50)]; 23 | _multiColorLoader.lineWidth = 2.0; 24 | 25 | // Pass the custom colors array 26 | _multiColorLoader.colorArray = [NSArray arrayWithObjects:[UIColor redColor], 27 | [UIColor purpleColor], 28 | [UIColor greenColor], 29 | [UIColor blueColor], nil]; 30 | [_multiColorLoader startAnimation]; 31 | [self.view addSubview:_multiColorLoader]; 32 | } 33 | 34 | - (void)didReceiveMemoryWarning 35 | { 36 | [super didReceiveMemoryWarning]; 37 | // Dispose of any resources that can be recreated. 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "83.5x83.5", 66 | "scale" : "2x" 67 | } 68 | ], 69 | "info" : { 70 | "version" : 1, 71 | "author" : "xcode" 72 | } 73 | } -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/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 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/BLMultiColorLoader/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BLMultiColorLoader 4 | // 5 | // Created by Babulal Poonia on 03/12/2016. 6 | // Copyright (c) 2016 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "BLAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) 13 | { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([BLAppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | use_frameworks! 3 | 4 | target 'BLMultiColorLoader_Example', :exclusive => true do 5 | pod 'BLMultiColorLoader', :path => '../' 6 | end 7 | 8 | target 'BLMultiColorLoader_Tests', :exclusive => true do 9 | pod 'BLMultiColorLoader', :path => '../' 10 | 11 | 12 | end 13 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - BLMultiColorLoader (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - BLMultiColorLoader (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | BLMultiColorLoader: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | BLMultiColorLoader: ea9c55c6af8acce89bf45210d7f433b4b1cb348d 13 | 14 | COCOAPODS: 0.39.0 15 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Headers/Private/BLMultiColorLoader/BLMultiColorLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/BLMultiColorLoader.h -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Local Podspecs/BLMultiColorLoader.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BLMultiColorLoader", 3 | "version": "0.1.0", 4 | "summary": "This is the pod version of BLMultiColorHeader.", 5 | "description": "Simple, easy to use, Multi coloured and customisable loading indicator (loader) for iOS applications.", 6 | "homepage": "https://github.com/BLPoonia/BLMultiColorLoader", 7 | "screenshots": "https://raw.githubusercontent.com/BLPoonia/BLMultiColorLoader/master/Screens/loader_screenshot.gif", 8 | "license": "MIT", 9 | "authors": { 10 | "Babulal Poonia": "poonia.nitrkl@gmail.com", 11 | "Contribution - Herrick Wolber": "wolbereric@yahoo.fr" 12 | }, 13 | "source": { 14 | "git": "https://github.com/BLPoonia/BLMultiColorLoader.git", 15 | "tag": "0.1.0" 16 | }, 17 | "social_media_url": "https://twitter.com/__poonia", 18 | "platforms": { 19 | "ios": "7.0" 20 | }, 21 | "requires_arc": true, 22 | "source_files": "Pod/Classes/**/*", 23 | "resource_bundles": { 24 | "BLMultiColorLoader": [ 25 | "Pod/Assets/*.png" 26 | ] 27 | }, 28 | "public_header_files": "Pod/Classes/**/*.h", 29 | "frameworks": "UIKit" 30 | } 31 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - BLMultiColorLoader (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - BLMultiColorLoader (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | BLMultiColorLoader: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | BLMultiColorLoader: ea9c55c6af8acce89bf45210d7f433b4b1cb348d 13 | 14 | COCOAPODS: 0.39.0 15 | -------------------------------------------------------------------------------- /BLMultiColorLoader/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 | 08A8773400E958320C18A458A2498EB9 /* Pods-BLMultiColorLoader_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E8B022C95A83AE1322617E74951CB3AB /* Pods-BLMultiColorLoader_Tests-dummy.m */; }; 11 | 2369B13DA7F7C4E2CE6D7B0B07089348 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E7E5AF37923BFA48D6994B9BFC6535F /* Foundation.framework */; }; 12 | 4565E156AB5581594AE9499FF60D9EDD /* BLMultiColorLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6308DA2A8F075F7AC4A2BF921E259BBD /* BLMultiColorLoader-dummy.m */; }; 13 | 4E0C7B077123A9E5D048600963DB74A1 /* BLMultiColorLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1E2A19C23CFCAA7612F9C4DA7F6CA1 /* BLMultiColorLoader.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 72040C9FAF0BDF68945DF8AD9D4559D6 /* BLMultiColorLoader-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F5D4CB4A69E28043EC2B382F2BA752 /* BLMultiColorLoader-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 8458C7B7E4FBD6E840E2C25CC1AF0F20 /* BLMultiColorLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D4188E020CD7541BF85CF95D85DEF7 /* BLMultiColorLoader.m */; }; 16 | 9F3B1EADF293EFB69CBFED0747755962 /* Pods-BLMultiColorLoader_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E13A66850FB9418551D3D5BE24496D7 /* Pods-BLMultiColorLoader_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | A7F23446BA0BEAFD57B89A68592CD5ED /* Pods-BLMultiColorLoader_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B5112B6AFF6E4B5AA81D7D60F812D7 /* Pods-BLMultiColorLoader_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | AB71B0F282FBA5774C8C935AE922539E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E7E5AF37923BFA48D6994B9BFC6535F /* Foundation.framework */; }; 19 | BB5232F4E224BDA28BB97EE6E04BC944 /* BLMultiColorLoader.bundle in Resources */ = {isa = PBXBuildFile; fileRef = DD27E55695C6E22DB875D213A2507EE0 /* BLMultiColorLoader.bundle */; }; 20 | BF49F3E223F4471D95A1A403956A33D5 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3B7BDF5CE5CB8F095FE12DA55D9A9BB /* UIKit.framework */; }; 21 | C015654C34DDC100DFBE445862B9A7C2 /* Pods-BLMultiColorLoader_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9415A84B53B984B491FF14F54ED4B85 /* Pods-BLMultiColorLoader_Example-dummy.m */; }; 22 | FD9B7A2E7502E7266DD011CC3284A782 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E7E5AF37923BFA48D6994B9BFC6535F /* Foundation.framework */; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXContainerItemProxy section */ 26 | 97FCDA07B549C912A0F1C3BE3D4E5546 /* PBXContainerItemProxy */ = { 27 | isa = PBXContainerItemProxy; 28 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 29 | proxyType = 1; 30 | remoteGlobalIDString = 7AB99DB2502EC08893C64CFDBEEE5A07; 31 | remoteInfo = BLMultiColorLoader; 32 | }; 33 | B8C3EFDD58847CA8EF0A0DE74E624508 /* PBXContainerItemProxy */ = { 34 | isa = PBXContainerItemProxy; 35 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 36 | proxyType = 1; 37 | remoteGlobalIDString = 7AB99DB2502EC08893C64CFDBEEE5A07; 38 | remoteInfo = BLMultiColorLoader; 39 | }; 40 | EE2D62DDF6E97C08A5D0FCA488F35B1C /* PBXContainerItemProxy */ = { 41 | isa = PBXContainerItemProxy; 42 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 43 | proxyType = 1; 44 | remoteGlobalIDString = 1069FC937B4ED8AC09CBDAADD5BD35F2; 45 | remoteInfo = "BLMultiColorLoader-BLMultiColorLoader"; 46 | }; 47 | /* End PBXContainerItemProxy section */ 48 | 49 | /* Begin PBXFileReference section */ 50 | 01B5112B6AFF6E4B5AA81D7D60F812D7 /* Pods-BLMultiColorLoader_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BLMultiColorLoader_Tests-umbrella.h"; sourceTree = ""; }; 51 | 061FB3533EDAB82A7DDE032EF66F9DCA /* Pods-BLMultiColorLoader_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BLMultiColorLoader_Tests-resources.sh"; sourceTree = ""; }; 52 | 0C744040A42115A7FAE009C8ED2647A4 /* Pods_BLMultiColorLoader_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BLMultiColorLoader_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 53 | 188187EC1B297F1BF69AA26A8B6E757F /* Pods-BLMultiColorLoader_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BLMultiColorLoader_Example.release.xcconfig"; sourceTree = ""; }; 54 | 18D516A2A07DCDF9A25F22B0483993B5 /* Pods-BLMultiColorLoader_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-BLMultiColorLoader_Example-acknowledgements.markdown"; sourceTree = ""; }; 55 | 20B32F5A6BE13B058F4BAA35BFE1688B /* Pods-BLMultiColorLoader_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BLMultiColorLoader_Tests.debug.xcconfig"; sourceTree = ""; }; 56 | 387C1A5319A55F38AC91165645BECD02 /* Pods-BLMultiColorLoader_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-BLMultiColorLoader_Example-acknowledgements.plist"; sourceTree = ""; }; 57 | 3E13A66850FB9418551D3D5BE24496D7 /* Pods-BLMultiColorLoader_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BLMultiColorLoader_Example-umbrella.h"; sourceTree = ""; }; 58 | 436E830B1F2FF5763CF3C99C84CC00F9 /* Pods_BLMultiColorLoader_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BLMultiColorLoader_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | 4BBDE39DB5A239EE85BDDF272B75A989 /* Pods-BLMultiColorLoader_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BLMultiColorLoader_Tests.release.xcconfig"; sourceTree = ""; }; 60 | 6308DA2A8F075F7AC4A2BF921E259BBD /* BLMultiColorLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BLMultiColorLoader-dummy.m"; sourceTree = ""; }; 61 | 6E7E5AF37923BFA48D6994B9BFC6535F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 62 | 783FF85F744E4AA6F198247D8B0B6F48 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 63 | 7EB106D5D53964E145709653F36E115B /* BLMultiColorLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BLMultiColorLoader-prefix.pch"; sourceTree = ""; }; 64 | 825092395F757E1DFCDCA2C86184A274 /* Pods-BLMultiColorLoader_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BLMultiColorLoader_Example-frameworks.sh"; sourceTree = ""; }; 65 | 9249457D55CBF925FDF06EBC9F9592C1 /* Pods-BLMultiColorLoader_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-BLMultiColorLoader_Tests.modulemap"; sourceTree = ""; }; 66 | 993B7731EB0CE6E81760F3A781896D83 /* BLMultiColorLoader.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BLMultiColorLoader.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 67 | A0317F3FF0AF795693250FE73BCE4FB3 /* Pods-BLMultiColorLoader_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-BLMultiColorLoader_Tests-acknowledgements.markdown"; sourceTree = ""; }; 68 | A4CD3DEE375DC06EB1EDF82FB75D3B48 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 69 | AC8867F2FC54EB171ADE7A159303CBAA /* Pods-BLMultiColorLoader_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BLMultiColorLoader_Example-resources.sh"; sourceTree = ""; }; 70 | B9415A84B53B984B491FF14F54ED4B85 /* Pods-BLMultiColorLoader_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BLMultiColorLoader_Example-dummy.m"; sourceTree = ""; }; 71 | BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 72 | BBC1D0CD05A46480D17CE5333F6CC382 /* Pods-BLMultiColorLoader_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BLMultiColorLoader_Example.debug.xcconfig"; sourceTree = ""; }; 73 | BC47B6B9E55B51D0609FAACC8CC6B989 /* BLMultiColorLoader.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = BLMultiColorLoader.modulemap; sourceTree = ""; }; 74 | C3B7BDF5CE5CB8F095FE12DA55D9A9BB /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 75 | C9D4188E020CD7541BF85CF95D85DEF7 /* BLMultiColorLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BLMultiColorLoader.m; sourceTree = ""; }; 76 | CCC048BA0CA42D4EC1DA35DF3CC73159 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 77 | CD4AE9D0CA3CF62E50AAA56F8A605626 /* Pods-BLMultiColorLoader_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-BLMultiColorLoader_Tests-acknowledgements.plist"; sourceTree = ""; }; 78 | CEEB1C1F2CA063696A2F5F6D163B5149 /* Pods-BLMultiColorLoader_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-BLMultiColorLoader_Example.modulemap"; sourceTree = ""; }; 79 | CF97CE0E6C1825A64D9AB2E64269AF83 /* BLMultiColorLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BLMultiColorLoader.xcconfig; sourceTree = ""; }; 80 | DD1E2A19C23CFCAA7612F9C4DA7F6CA1 /* BLMultiColorLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BLMultiColorLoader.h; sourceTree = ""; }; 81 | DD27E55695C6E22DB875D213A2507EE0 /* BLMultiColorLoader.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BLMultiColorLoader.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 82 | E4F5D4CB4A69E28043EC2B382F2BA752 /* BLMultiColorLoader-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BLMultiColorLoader-umbrella.h"; sourceTree = ""; }; 83 | E52C2A5C5F8523BE3087AAF4DAC86A6B /* Pods-BLMultiColorLoader_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BLMultiColorLoader_Tests-frameworks.sh"; sourceTree = ""; }; 84 | E8B022C95A83AE1322617E74951CB3AB /* Pods-BLMultiColorLoader_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BLMultiColorLoader_Tests-dummy.m"; sourceTree = ""; }; 85 | /* End PBXFileReference section */ 86 | 87 | /* Begin PBXFrameworksBuildPhase section */ 88 | 4A4DE8AD2AB664B67C381478744417BD /* Frameworks */ = { 89 | isa = PBXFrameworksBuildPhase; 90 | buildActionMask = 2147483647; 91 | files = ( 92 | AB71B0F282FBA5774C8C935AE922539E /* Foundation.framework in Frameworks */, 93 | ); 94 | runOnlyForDeploymentPostprocessing = 0; 95 | }; 96 | 5CB8CEA92D22C92DF15035B46CFFEEA6 /* Frameworks */ = { 97 | isa = PBXFrameworksBuildPhase; 98 | buildActionMask = 2147483647; 99 | files = ( 100 | FD9B7A2E7502E7266DD011CC3284A782 /* Foundation.framework in Frameworks */, 101 | BF49F3E223F4471D95A1A403956A33D5 /* UIKit.framework in Frameworks */, 102 | ); 103 | runOnlyForDeploymentPostprocessing = 0; 104 | }; 105 | D555870B6D33A8BB4BA0580715436CB5 /* Frameworks */ = { 106 | isa = PBXFrameworksBuildPhase; 107 | buildActionMask = 2147483647; 108 | files = ( 109 | 2369B13DA7F7C4E2CE6D7B0B07089348 /* Foundation.framework in Frameworks */, 110 | ); 111 | runOnlyForDeploymentPostprocessing = 0; 112 | }; 113 | D5E39A952746E3EF011E7738D19532D3 /* Frameworks */ = { 114 | isa = PBXFrameworksBuildPhase; 115 | buildActionMask = 2147483647; 116 | files = ( 117 | ); 118 | runOnlyForDeploymentPostprocessing = 0; 119 | }; 120 | /* End PBXFrameworksBuildPhase section */ 121 | 122 | /* Begin PBXGroup section */ 123 | 0EFB26C6A50D36C3A9B150864C50A8C1 /* Products */ = { 124 | isa = PBXGroup; 125 | children = ( 126 | DD27E55695C6E22DB875D213A2507EE0 /* BLMultiColorLoader.bundle */, 127 | 993B7731EB0CE6E81760F3A781896D83 /* BLMultiColorLoader.framework */, 128 | 436E830B1F2FF5763CF3C99C84CC00F9 /* Pods_BLMultiColorLoader_Example.framework */, 129 | 0C744040A42115A7FAE009C8ED2647A4 /* Pods_BLMultiColorLoader_Tests.framework */, 130 | ); 131 | name = Products; 132 | sourceTree = ""; 133 | }; 134 | 18340F12838DEE43507667CC74401EB1 /* iOS */ = { 135 | isa = PBXGroup; 136 | children = ( 137 | 6E7E5AF37923BFA48D6994B9BFC6535F /* Foundation.framework */, 138 | C3B7BDF5CE5CB8F095FE12DA55D9A9BB /* UIKit.framework */, 139 | ); 140 | name = iOS; 141 | sourceTree = ""; 142 | }; 143 | 239501FAD4B6FD5F48668A485B78E5CB /* Classes */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | DD1E2A19C23CFCAA7612F9C4DA7F6CA1 /* BLMultiColorLoader.h */, 147 | C9D4188E020CD7541BF85CF95D85DEF7 /* BLMultiColorLoader.m */, 148 | ); 149 | path = Classes; 150 | sourceTree = ""; 151 | }; 152 | 433CD3331B6C3787F473C941B61FC68F /* Frameworks */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | 18340F12838DEE43507667CC74401EB1 /* iOS */, 156 | ); 157 | name = Frameworks; 158 | sourceTree = ""; 159 | }; 160 | 6DF7C8E78D87A3D82613558DB611AA6F /* Development Pods */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | 903C83BE1A8B58F2830B2808A0DB1C40 /* BLMultiColorLoader */, 164 | ); 165 | name = "Development Pods"; 166 | sourceTree = ""; 167 | }; 168 | 7DB346D0F39D3F0E887471402A8071AB = { 169 | isa = PBXGroup; 170 | children = ( 171 | BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */, 172 | 6DF7C8E78D87A3D82613558DB611AA6F /* Development Pods */, 173 | 433CD3331B6C3787F473C941B61FC68F /* Frameworks */, 174 | 0EFB26C6A50D36C3A9B150864C50A8C1 /* Products */, 175 | F5C62786928D5641045D2FD8956854D5 /* Targets Support Files */, 176 | ); 177 | sourceTree = ""; 178 | }; 179 | 903C83BE1A8B58F2830B2808A0DB1C40 /* BLMultiColorLoader */ = { 180 | isa = PBXGroup; 181 | children = ( 182 | DDD3A6207FF07C743D8F6BB3E13C7DC7 /* Pod */, 183 | EA5FCD4986180306535821815A64DEC7 /* Support Files */, 184 | ); 185 | name = BLMultiColorLoader; 186 | path = ../..; 187 | sourceTree = ""; 188 | }; 189 | B64EEF0F9A4FCCB4AE1089BC1ED866A6 /* Pods-BLMultiColorLoader_Example */ = { 190 | isa = PBXGroup; 191 | children = ( 192 | A4CD3DEE375DC06EB1EDF82FB75D3B48 /* Info.plist */, 193 | CEEB1C1F2CA063696A2F5F6D163B5149 /* Pods-BLMultiColorLoader_Example.modulemap */, 194 | 18D516A2A07DCDF9A25F22B0483993B5 /* Pods-BLMultiColorLoader_Example-acknowledgements.markdown */, 195 | 387C1A5319A55F38AC91165645BECD02 /* Pods-BLMultiColorLoader_Example-acknowledgements.plist */, 196 | B9415A84B53B984B491FF14F54ED4B85 /* Pods-BLMultiColorLoader_Example-dummy.m */, 197 | 825092395F757E1DFCDCA2C86184A274 /* Pods-BLMultiColorLoader_Example-frameworks.sh */, 198 | AC8867F2FC54EB171ADE7A159303CBAA /* Pods-BLMultiColorLoader_Example-resources.sh */, 199 | 3E13A66850FB9418551D3D5BE24496D7 /* Pods-BLMultiColorLoader_Example-umbrella.h */, 200 | BBC1D0CD05A46480D17CE5333F6CC382 /* Pods-BLMultiColorLoader_Example.debug.xcconfig */, 201 | 188187EC1B297F1BF69AA26A8B6E757F /* Pods-BLMultiColorLoader_Example.release.xcconfig */, 202 | ); 203 | name = "Pods-BLMultiColorLoader_Example"; 204 | path = "Target Support Files/Pods-BLMultiColorLoader_Example"; 205 | sourceTree = ""; 206 | }; 207 | CF54721B72F40FB840DCEFE32C09DB80 /* Pods-BLMultiColorLoader_Tests */ = { 208 | isa = PBXGroup; 209 | children = ( 210 | CCC048BA0CA42D4EC1DA35DF3CC73159 /* Info.plist */, 211 | 9249457D55CBF925FDF06EBC9F9592C1 /* Pods-BLMultiColorLoader_Tests.modulemap */, 212 | A0317F3FF0AF795693250FE73BCE4FB3 /* Pods-BLMultiColorLoader_Tests-acknowledgements.markdown */, 213 | CD4AE9D0CA3CF62E50AAA56F8A605626 /* Pods-BLMultiColorLoader_Tests-acknowledgements.plist */, 214 | E8B022C95A83AE1322617E74951CB3AB /* Pods-BLMultiColorLoader_Tests-dummy.m */, 215 | E52C2A5C5F8523BE3087AAF4DAC86A6B /* Pods-BLMultiColorLoader_Tests-frameworks.sh */, 216 | 061FB3533EDAB82A7DDE032EF66F9DCA /* Pods-BLMultiColorLoader_Tests-resources.sh */, 217 | 01B5112B6AFF6E4B5AA81D7D60F812D7 /* Pods-BLMultiColorLoader_Tests-umbrella.h */, 218 | 20B32F5A6BE13B058F4BAA35BFE1688B /* Pods-BLMultiColorLoader_Tests.debug.xcconfig */, 219 | 4BBDE39DB5A239EE85BDDF272B75A989 /* Pods-BLMultiColorLoader_Tests.release.xcconfig */, 220 | ); 221 | name = "Pods-BLMultiColorLoader_Tests"; 222 | path = "Target Support Files/Pods-BLMultiColorLoader_Tests"; 223 | sourceTree = ""; 224 | }; 225 | DDD3A6207FF07C743D8F6BB3E13C7DC7 /* Pod */ = { 226 | isa = PBXGroup; 227 | children = ( 228 | 239501FAD4B6FD5F48668A485B78E5CB /* Classes */, 229 | ); 230 | path = Pod; 231 | sourceTree = ""; 232 | }; 233 | EA5FCD4986180306535821815A64DEC7 /* Support Files */ = { 234 | isa = PBXGroup; 235 | children = ( 236 | BC47B6B9E55B51D0609FAACC8CC6B989 /* BLMultiColorLoader.modulemap */, 237 | CF97CE0E6C1825A64D9AB2E64269AF83 /* BLMultiColorLoader.xcconfig */, 238 | 6308DA2A8F075F7AC4A2BF921E259BBD /* BLMultiColorLoader-dummy.m */, 239 | 7EB106D5D53964E145709653F36E115B /* BLMultiColorLoader-prefix.pch */, 240 | E4F5D4CB4A69E28043EC2B382F2BA752 /* BLMultiColorLoader-umbrella.h */, 241 | 783FF85F744E4AA6F198247D8B0B6F48 /* Info.plist */, 242 | ); 243 | name = "Support Files"; 244 | path = "Example/Pods/Target Support Files/BLMultiColorLoader"; 245 | sourceTree = ""; 246 | }; 247 | F5C62786928D5641045D2FD8956854D5 /* Targets Support Files */ = { 248 | isa = PBXGroup; 249 | children = ( 250 | B64EEF0F9A4FCCB4AE1089BC1ED866A6 /* Pods-BLMultiColorLoader_Example */, 251 | CF54721B72F40FB840DCEFE32C09DB80 /* Pods-BLMultiColorLoader_Tests */, 252 | ); 253 | name = "Targets Support Files"; 254 | sourceTree = ""; 255 | }; 256 | /* End PBXGroup section */ 257 | 258 | /* Begin PBXHeadersBuildPhase section */ 259 | 9AB70F1FADE20ED295B71F62DEC7ECA6 /* Headers */ = { 260 | isa = PBXHeadersBuildPhase; 261 | buildActionMask = 2147483647; 262 | files = ( 263 | 9F3B1EADF293EFB69CBFED0747755962 /* Pods-BLMultiColorLoader_Example-umbrella.h in Headers */, 264 | ); 265 | runOnlyForDeploymentPostprocessing = 0; 266 | }; 267 | AFC7A540C185011E6D062AEF85C0FAAF /* Headers */ = { 268 | isa = PBXHeadersBuildPhase; 269 | buildActionMask = 2147483647; 270 | files = ( 271 | A7F23446BA0BEAFD57B89A68592CD5ED /* Pods-BLMultiColorLoader_Tests-umbrella.h in Headers */, 272 | ); 273 | runOnlyForDeploymentPostprocessing = 0; 274 | }; 275 | B58D42C75AACB1B71099EA71434E688B /* Headers */ = { 276 | isa = PBXHeadersBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | 72040C9FAF0BDF68945DF8AD9D4559D6 /* BLMultiColorLoader-umbrella.h in Headers */, 280 | 4E0C7B077123A9E5D048600963DB74A1 /* BLMultiColorLoader.h in Headers */, 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | }; 284 | /* End PBXHeadersBuildPhase section */ 285 | 286 | /* Begin PBXNativeTarget section */ 287 | 1069FC937B4ED8AC09CBDAADD5BD35F2 /* BLMultiColorLoader-BLMultiColorLoader */ = { 288 | isa = PBXNativeTarget; 289 | buildConfigurationList = F6237FA303CCA2A9C2C8F086061D5F56 /* Build configuration list for PBXNativeTarget "BLMultiColorLoader-BLMultiColorLoader" */; 290 | buildPhases = ( 291 | 78F0841E9F8A1A066BC8C4C53B09E01C /* Sources */, 292 | D5E39A952746E3EF011E7738D19532D3 /* Frameworks */, 293 | 53BFDBAFD3397A0CA94FD93B74FCD256 /* Resources */, 294 | ); 295 | buildRules = ( 296 | ); 297 | dependencies = ( 298 | ); 299 | name = "BLMultiColorLoader-BLMultiColorLoader"; 300 | productName = "BLMultiColorLoader-BLMultiColorLoader"; 301 | productReference = DD27E55695C6E22DB875D213A2507EE0 /* BLMultiColorLoader.bundle */; 302 | productType = "com.apple.product-type.bundle"; 303 | }; 304 | 7AB99DB2502EC08893C64CFDBEEE5A07 /* BLMultiColorLoader */ = { 305 | isa = PBXNativeTarget; 306 | buildConfigurationList = 1C58E07A7848158AA3B50D343ED6D94C /* Build configuration list for PBXNativeTarget "BLMultiColorLoader" */; 307 | buildPhases = ( 308 | 53AC89023A4A6A493C7D9A57E9DEA592 /* Sources */, 309 | 5CB8CEA92D22C92DF15035B46CFFEEA6 /* Frameworks */, 310 | 1B1E124D6C219EB24A0AACA97E09B765 /* Resources */, 311 | B58D42C75AACB1B71099EA71434E688B /* Headers */, 312 | ); 313 | buildRules = ( 314 | ); 315 | dependencies = ( 316 | 26B55AF1589C8CE540EA67B935599C29 /* PBXTargetDependency */, 317 | ); 318 | name = BLMultiColorLoader; 319 | productName = BLMultiColorLoader; 320 | productReference = 993B7731EB0CE6E81760F3A781896D83 /* BLMultiColorLoader.framework */; 321 | productType = "com.apple.product-type.framework"; 322 | }; 323 | 90FD780BA6E3ADEEC6C7A71227822EC1 /* Pods-BLMultiColorLoader_Example */ = { 324 | isa = PBXNativeTarget; 325 | buildConfigurationList = D953883EB1EAB29EDB9CF77AC6336A72 /* Build configuration list for PBXNativeTarget "Pods-BLMultiColorLoader_Example" */; 326 | buildPhases = ( 327 | B4859AA92C87E704662CE628391C238A /* Sources */, 328 | D555870B6D33A8BB4BA0580715436CB5 /* Frameworks */, 329 | 9AB70F1FADE20ED295B71F62DEC7ECA6 /* Headers */, 330 | ); 331 | buildRules = ( 332 | ); 333 | dependencies = ( 334 | FB834AE61F7E30FDFC44CE8ECC75FBFB /* PBXTargetDependency */, 335 | ); 336 | name = "Pods-BLMultiColorLoader_Example"; 337 | productName = "Pods-BLMultiColorLoader_Example"; 338 | productReference = 436E830B1F2FF5763CF3C99C84CC00F9 /* Pods_BLMultiColorLoader_Example.framework */; 339 | productType = "com.apple.product-type.framework"; 340 | }; 341 | 9B5EA408003BE16D29672C5B8BF0157A /* Pods-BLMultiColorLoader_Tests */ = { 342 | isa = PBXNativeTarget; 343 | buildConfigurationList = 4D6DC4647497BEFEFC11790FA4311E59 /* Build configuration list for PBXNativeTarget "Pods-BLMultiColorLoader_Tests" */; 344 | buildPhases = ( 345 | 151ECF7C231FBAEF441F4A54260ED510 /* Sources */, 346 | 4A4DE8AD2AB664B67C381478744417BD /* Frameworks */, 347 | AFC7A540C185011E6D062AEF85C0FAAF /* Headers */, 348 | ); 349 | buildRules = ( 350 | ); 351 | dependencies = ( 352 | 766A7F5F0E54C3413E47558C9B2A8599 /* PBXTargetDependency */, 353 | ); 354 | name = "Pods-BLMultiColorLoader_Tests"; 355 | productName = "Pods-BLMultiColorLoader_Tests"; 356 | productReference = 0C744040A42115A7FAE009C8ED2647A4 /* Pods_BLMultiColorLoader_Tests.framework */; 357 | productType = "com.apple.product-type.framework"; 358 | }; 359 | /* End PBXNativeTarget section */ 360 | 361 | /* Begin PBXProject section */ 362 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 363 | isa = PBXProject; 364 | attributes = { 365 | LastSwiftUpdateCheck = 0700; 366 | LastUpgradeCheck = 0700; 367 | }; 368 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 369 | compatibilityVersion = "Xcode 3.2"; 370 | developmentRegion = English; 371 | hasScannedForEncodings = 0; 372 | knownRegions = ( 373 | en, 374 | ); 375 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 376 | productRefGroup = 0EFB26C6A50D36C3A9B150864C50A8C1 /* Products */; 377 | projectDirPath = ""; 378 | projectRoot = ""; 379 | targets = ( 380 | 7AB99DB2502EC08893C64CFDBEEE5A07 /* BLMultiColorLoader */, 381 | 1069FC937B4ED8AC09CBDAADD5BD35F2 /* BLMultiColorLoader-BLMultiColorLoader */, 382 | 90FD780BA6E3ADEEC6C7A71227822EC1 /* Pods-BLMultiColorLoader_Example */, 383 | 9B5EA408003BE16D29672C5B8BF0157A /* Pods-BLMultiColorLoader_Tests */, 384 | ); 385 | }; 386 | /* End PBXProject section */ 387 | 388 | /* Begin PBXResourcesBuildPhase section */ 389 | 1B1E124D6C219EB24A0AACA97E09B765 /* Resources */ = { 390 | isa = PBXResourcesBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | BB5232F4E224BDA28BB97EE6E04BC944 /* BLMultiColorLoader.bundle in Resources */, 394 | ); 395 | runOnlyForDeploymentPostprocessing = 0; 396 | }; 397 | 53BFDBAFD3397A0CA94FD93B74FCD256 /* Resources */ = { 398 | isa = PBXResourcesBuildPhase; 399 | buildActionMask = 2147483647; 400 | files = ( 401 | ); 402 | runOnlyForDeploymentPostprocessing = 0; 403 | }; 404 | /* End PBXResourcesBuildPhase section */ 405 | 406 | /* Begin PBXSourcesBuildPhase section */ 407 | 151ECF7C231FBAEF441F4A54260ED510 /* Sources */ = { 408 | isa = PBXSourcesBuildPhase; 409 | buildActionMask = 2147483647; 410 | files = ( 411 | 08A8773400E958320C18A458A2498EB9 /* Pods-BLMultiColorLoader_Tests-dummy.m in Sources */, 412 | ); 413 | runOnlyForDeploymentPostprocessing = 0; 414 | }; 415 | 53AC89023A4A6A493C7D9A57E9DEA592 /* Sources */ = { 416 | isa = PBXSourcesBuildPhase; 417 | buildActionMask = 2147483647; 418 | files = ( 419 | 4565E156AB5581594AE9499FF60D9EDD /* BLMultiColorLoader-dummy.m in Sources */, 420 | 8458C7B7E4FBD6E840E2C25CC1AF0F20 /* BLMultiColorLoader.m in Sources */, 421 | ); 422 | runOnlyForDeploymentPostprocessing = 0; 423 | }; 424 | 78F0841E9F8A1A066BC8C4C53B09E01C /* Sources */ = { 425 | isa = PBXSourcesBuildPhase; 426 | buildActionMask = 2147483647; 427 | files = ( 428 | ); 429 | runOnlyForDeploymentPostprocessing = 0; 430 | }; 431 | B4859AA92C87E704662CE628391C238A /* Sources */ = { 432 | isa = PBXSourcesBuildPhase; 433 | buildActionMask = 2147483647; 434 | files = ( 435 | C015654C34DDC100DFBE445862B9A7C2 /* Pods-BLMultiColorLoader_Example-dummy.m in Sources */, 436 | ); 437 | runOnlyForDeploymentPostprocessing = 0; 438 | }; 439 | /* End PBXSourcesBuildPhase section */ 440 | 441 | /* Begin PBXTargetDependency section */ 442 | 26B55AF1589C8CE540EA67B935599C29 /* PBXTargetDependency */ = { 443 | isa = PBXTargetDependency; 444 | name = "BLMultiColorLoader-BLMultiColorLoader"; 445 | target = 1069FC937B4ED8AC09CBDAADD5BD35F2 /* BLMultiColorLoader-BLMultiColorLoader */; 446 | targetProxy = EE2D62DDF6E97C08A5D0FCA488F35B1C /* PBXContainerItemProxy */; 447 | }; 448 | 766A7F5F0E54C3413E47558C9B2A8599 /* PBXTargetDependency */ = { 449 | isa = PBXTargetDependency; 450 | name = BLMultiColorLoader; 451 | target = 7AB99DB2502EC08893C64CFDBEEE5A07 /* BLMultiColorLoader */; 452 | targetProxy = 97FCDA07B549C912A0F1C3BE3D4E5546 /* PBXContainerItemProxy */; 453 | }; 454 | FB834AE61F7E30FDFC44CE8ECC75FBFB /* PBXTargetDependency */ = { 455 | isa = PBXTargetDependency; 456 | name = BLMultiColorLoader; 457 | target = 7AB99DB2502EC08893C64CFDBEEE5A07 /* BLMultiColorLoader */; 458 | targetProxy = B8C3EFDD58847CA8EF0A0DE74E624508 /* PBXContainerItemProxy */; 459 | }; 460 | /* End PBXTargetDependency section */ 461 | 462 | /* Begin XCBuildConfiguration section */ 463 | 03CA91998D6773EC5D02B3DB87B8353E /* Release */ = { 464 | isa = XCBuildConfiguration; 465 | buildSettings = { 466 | ALWAYS_SEARCH_USER_PATHS = NO; 467 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 468 | CLANG_CXX_LIBRARY = "libc++"; 469 | CLANG_ENABLE_MODULES = YES; 470 | CLANG_ENABLE_OBJC_ARC = YES; 471 | CLANG_WARN_BOOL_CONVERSION = YES; 472 | CLANG_WARN_CONSTANT_CONVERSION = YES; 473 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 474 | CLANG_WARN_EMPTY_BODY = YES; 475 | CLANG_WARN_ENUM_CONVERSION = YES; 476 | CLANG_WARN_INT_CONVERSION = YES; 477 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 478 | CLANG_WARN_UNREACHABLE_CODE = YES; 479 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 480 | COPY_PHASE_STRIP = YES; 481 | ENABLE_NS_ASSERTIONS = NO; 482 | GCC_C_LANGUAGE_STANDARD = gnu99; 483 | GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; 484 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 485 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 486 | GCC_WARN_UNDECLARED_SELECTOR = YES; 487 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 488 | GCC_WARN_UNUSED_FUNCTION = YES; 489 | GCC_WARN_UNUSED_VARIABLE = YES; 490 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 491 | STRIP_INSTALLED_PRODUCT = NO; 492 | SYMROOT = "${SRCROOT}/../build"; 493 | VALIDATE_PRODUCT = YES; 494 | }; 495 | name = Release; 496 | }; 497 | 0B57334D6C23DADAA4F7D802A5760EB2 /* Debug */ = { 498 | isa = XCBuildConfiguration; 499 | buildSettings = { 500 | ALWAYS_SEARCH_USER_PATHS = NO; 501 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 502 | CLANG_CXX_LIBRARY = "libc++"; 503 | CLANG_ENABLE_MODULES = YES; 504 | CLANG_ENABLE_OBJC_ARC = YES; 505 | CLANG_WARN_BOOL_CONVERSION = YES; 506 | CLANG_WARN_CONSTANT_CONVERSION = YES; 507 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 508 | CLANG_WARN_EMPTY_BODY = YES; 509 | CLANG_WARN_ENUM_CONVERSION = YES; 510 | CLANG_WARN_INT_CONVERSION = YES; 511 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 512 | CLANG_WARN_UNREACHABLE_CODE = YES; 513 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 514 | COPY_PHASE_STRIP = NO; 515 | GCC_C_LANGUAGE_STANDARD = gnu99; 516 | GCC_DYNAMIC_NO_PIC = NO; 517 | GCC_OPTIMIZATION_LEVEL = 0; 518 | GCC_PREPROCESSOR_DEFINITIONS = ( 519 | "DEBUG=1", 520 | "$(inherited)", 521 | ); 522 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 523 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 524 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 525 | GCC_WARN_UNDECLARED_SELECTOR = YES; 526 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 527 | GCC_WARN_UNUSED_FUNCTION = YES; 528 | GCC_WARN_UNUSED_VARIABLE = YES; 529 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 530 | ONLY_ACTIVE_ARCH = YES; 531 | STRIP_INSTALLED_PRODUCT = NO; 532 | SYMROOT = "${SRCROOT}/../build"; 533 | }; 534 | name = Debug; 535 | }; 536 | 404C2024633842F2791CF98A7D5A3F43 /* Release */ = { 537 | isa = XCBuildConfiguration; 538 | baseConfigurationReference = 4BBDE39DB5A239EE85BDDF272B75A989 /* Pods-BLMultiColorLoader_Tests.release.xcconfig */; 539 | buildSettings = { 540 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 541 | CURRENT_PROJECT_VERSION = 1; 542 | DEFINES_MODULE = YES; 543 | DYLIB_COMPATIBILITY_VERSION = 1; 544 | DYLIB_CURRENT_VERSION = 1; 545 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 546 | ENABLE_STRICT_OBJC_MSGSEND = YES; 547 | INFOPLIST_FILE = "Target Support Files/Pods-BLMultiColorLoader_Tests/Info.plist"; 548 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 549 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 550 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 551 | MACH_O_TYPE = staticlib; 552 | MODULEMAP_FILE = "Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests.modulemap"; 553 | MTL_ENABLE_DEBUG_INFO = NO; 554 | OTHER_LDFLAGS = ""; 555 | OTHER_LIBTOOLFLAGS = ""; 556 | PODS_ROOT = "$(SRCROOT)"; 557 | PRODUCT_NAME = Pods_BLMultiColorLoader_Tests; 558 | SDKROOT = iphoneos; 559 | SKIP_INSTALL = YES; 560 | TARGETED_DEVICE_FAMILY = "1,2"; 561 | VERSIONING_SYSTEM = "apple-generic"; 562 | VERSION_INFO_PREFIX = ""; 563 | }; 564 | name = Release; 565 | }; 566 | 45469C650C6AD52F94D971AD7A36778D /* Release */ = { 567 | isa = XCBuildConfiguration; 568 | baseConfigurationReference = 188187EC1B297F1BF69AA26A8B6E757F /* Pods-BLMultiColorLoader_Example.release.xcconfig */; 569 | buildSettings = { 570 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 571 | CURRENT_PROJECT_VERSION = 1; 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 | INFOPLIST_FILE = "Target Support Files/Pods-BLMultiColorLoader_Example/Info.plist"; 578 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 579 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 580 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 581 | MACH_O_TYPE = staticlib; 582 | MODULEMAP_FILE = "Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example.modulemap"; 583 | MTL_ENABLE_DEBUG_INFO = NO; 584 | OTHER_LDFLAGS = ""; 585 | OTHER_LIBTOOLFLAGS = ""; 586 | PODS_ROOT = "$(SRCROOT)"; 587 | PRODUCT_NAME = Pods_BLMultiColorLoader_Example; 588 | SDKROOT = iphoneos; 589 | SKIP_INSTALL = YES; 590 | TARGETED_DEVICE_FAMILY = "1,2"; 591 | VERSIONING_SYSTEM = "apple-generic"; 592 | VERSION_INFO_PREFIX = ""; 593 | }; 594 | name = Release; 595 | }; 596 | 56D6E648340C7D6F9AA59B780029C768 /* Debug */ = { 597 | isa = XCBuildConfiguration; 598 | baseConfigurationReference = CF97CE0E6C1825A64D9AB2E64269AF83 /* BLMultiColorLoader.xcconfig */; 599 | buildSettings = { 600 | ENABLE_STRICT_OBJC_MSGSEND = YES; 601 | PRODUCT_NAME = BLMultiColorLoader; 602 | SDKROOT = iphoneos; 603 | SKIP_INSTALL = YES; 604 | WRAPPER_EXTENSION = bundle; 605 | }; 606 | name = Debug; 607 | }; 608 | 7BF38E9607E5C2631DB58FAD2337ACA0 /* Release */ = { 609 | isa = XCBuildConfiguration; 610 | baseConfigurationReference = CF97CE0E6C1825A64D9AB2E64269AF83 /* BLMultiColorLoader.xcconfig */; 611 | buildSettings = { 612 | ENABLE_STRICT_OBJC_MSGSEND = YES; 613 | PRODUCT_NAME = BLMultiColorLoader; 614 | SDKROOT = iphoneos; 615 | SKIP_INSTALL = YES; 616 | WRAPPER_EXTENSION = bundle; 617 | }; 618 | name = Release; 619 | }; 620 | 8FE8A6B3CB06CC03117201DB8454269B /* Debug */ = { 621 | isa = XCBuildConfiguration; 622 | baseConfigurationReference = BBC1D0CD05A46480D17CE5333F6CC382 /* Pods-BLMultiColorLoader_Example.debug.xcconfig */; 623 | buildSettings = { 624 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 625 | CURRENT_PROJECT_VERSION = 1; 626 | DEFINES_MODULE = YES; 627 | DYLIB_COMPATIBILITY_VERSION = 1; 628 | DYLIB_CURRENT_VERSION = 1; 629 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 630 | ENABLE_STRICT_OBJC_MSGSEND = YES; 631 | INFOPLIST_FILE = "Target Support Files/Pods-BLMultiColorLoader_Example/Info.plist"; 632 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 633 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 634 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 635 | MACH_O_TYPE = staticlib; 636 | MODULEMAP_FILE = "Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example.modulemap"; 637 | MTL_ENABLE_DEBUG_INFO = YES; 638 | OTHER_LDFLAGS = ""; 639 | OTHER_LIBTOOLFLAGS = ""; 640 | PODS_ROOT = "$(SRCROOT)"; 641 | PRODUCT_NAME = Pods_BLMultiColorLoader_Example; 642 | SDKROOT = iphoneos; 643 | SKIP_INSTALL = YES; 644 | TARGETED_DEVICE_FAMILY = "1,2"; 645 | VERSIONING_SYSTEM = "apple-generic"; 646 | VERSION_INFO_PREFIX = ""; 647 | }; 648 | name = Debug; 649 | }; 650 | A34ED975ED1AD087CD39F8717233DCBF /* Debug */ = { 651 | isa = XCBuildConfiguration; 652 | baseConfigurationReference = CF97CE0E6C1825A64D9AB2E64269AF83 /* BLMultiColorLoader.xcconfig */; 653 | buildSettings = { 654 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 655 | CURRENT_PROJECT_VERSION = 1; 656 | DEFINES_MODULE = YES; 657 | DYLIB_COMPATIBILITY_VERSION = 1; 658 | DYLIB_CURRENT_VERSION = 1; 659 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 660 | ENABLE_STRICT_OBJC_MSGSEND = YES; 661 | GCC_PREFIX_HEADER = "Target Support Files/BLMultiColorLoader/BLMultiColorLoader-prefix.pch"; 662 | INFOPLIST_FILE = "Target Support Files/BLMultiColorLoader/Info.plist"; 663 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 664 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 665 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 666 | MACH_O_TYPE = staticlib; 667 | MODULEMAP_FILE = "Target Support Files/BLMultiColorLoader/BLMultiColorLoader.modulemap"; 668 | MTL_ENABLE_DEBUG_INFO = YES; 669 | PRODUCT_NAME = BLMultiColorLoader; 670 | SDKROOT = iphoneos; 671 | SKIP_INSTALL = YES; 672 | TARGETED_DEVICE_FAMILY = "1,2"; 673 | VERSIONING_SYSTEM = "apple-generic"; 674 | VERSION_INFO_PREFIX = ""; 675 | }; 676 | name = Debug; 677 | }; 678 | A9C66578AEDADD888A894E1A81B24BB8 /* Debug */ = { 679 | isa = XCBuildConfiguration; 680 | baseConfigurationReference = 20B32F5A6BE13B058F4BAA35BFE1688B /* Pods-BLMultiColorLoader_Tests.debug.xcconfig */; 681 | buildSettings = { 682 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 683 | CURRENT_PROJECT_VERSION = 1; 684 | DEFINES_MODULE = YES; 685 | DYLIB_COMPATIBILITY_VERSION = 1; 686 | DYLIB_CURRENT_VERSION = 1; 687 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 688 | ENABLE_STRICT_OBJC_MSGSEND = YES; 689 | INFOPLIST_FILE = "Target Support Files/Pods-BLMultiColorLoader_Tests/Info.plist"; 690 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 691 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 692 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 693 | MACH_O_TYPE = staticlib; 694 | MODULEMAP_FILE = "Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests.modulemap"; 695 | MTL_ENABLE_DEBUG_INFO = YES; 696 | OTHER_LDFLAGS = ""; 697 | OTHER_LIBTOOLFLAGS = ""; 698 | PODS_ROOT = "$(SRCROOT)"; 699 | PRODUCT_NAME = Pods_BLMultiColorLoader_Tests; 700 | SDKROOT = iphoneos; 701 | SKIP_INSTALL = YES; 702 | TARGETED_DEVICE_FAMILY = "1,2"; 703 | VERSIONING_SYSTEM = "apple-generic"; 704 | VERSION_INFO_PREFIX = ""; 705 | }; 706 | name = Debug; 707 | }; 708 | F6A523D0512B078C928F791C5761EB1B /* Release */ = { 709 | isa = XCBuildConfiguration; 710 | baseConfigurationReference = CF97CE0E6C1825A64D9AB2E64269AF83 /* BLMultiColorLoader.xcconfig */; 711 | buildSettings = { 712 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 713 | CURRENT_PROJECT_VERSION = 1; 714 | DEFINES_MODULE = YES; 715 | DYLIB_COMPATIBILITY_VERSION = 1; 716 | DYLIB_CURRENT_VERSION = 1; 717 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 718 | ENABLE_STRICT_OBJC_MSGSEND = YES; 719 | GCC_PREFIX_HEADER = "Target Support Files/BLMultiColorLoader/BLMultiColorLoader-prefix.pch"; 720 | INFOPLIST_FILE = "Target Support Files/BLMultiColorLoader/Info.plist"; 721 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 722 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 723 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 724 | MACH_O_TYPE = staticlib; 725 | MODULEMAP_FILE = "Target Support Files/BLMultiColorLoader/BLMultiColorLoader.modulemap"; 726 | MTL_ENABLE_DEBUG_INFO = NO; 727 | PRODUCT_NAME = BLMultiColorLoader; 728 | SDKROOT = iphoneos; 729 | SKIP_INSTALL = YES; 730 | TARGETED_DEVICE_FAMILY = "1,2"; 731 | VERSIONING_SYSTEM = "apple-generic"; 732 | VERSION_INFO_PREFIX = ""; 733 | }; 734 | name = Release; 735 | }; 736 | /* End XCBuildConfiguration section */ 737 | 738 | /* Begin XCConfigurationList section */ 739 | 1C58E07A7848158AA3B50D343ED6D94C /* Build configuration list for PBXNativeTarget "BLMultiColorLoader" */ = { 740 | isa = XCConfigurationList; 741 | buildConfigurations = ( 742 | A34ED975ED1AD087CD39F8717233DCBF /* Debug */, 743 | F6A523D0512B078C928F791C5761EB1B /* Release */, 744 | ); 745 | defaultConfigurationIsVisible = 0; 746 | defaultConfigurationName = Release; 747 | }; 748 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 749 | isa = XCConfigurationList; 750 | buildConfigurations = ( 751 | 0B57334D6C23DADAA4F7D802A5760EB2 /* Debug */, 752 | 03CA91998D6773EC5D02B3DB87B8353E /* Release */, 753 | ); 754 | defaultConfigurationIsVisible = 0; 755 | defaultConfigurationName = Release; 756 | }; 757 | 4D6DC4647497BEFEFC11790FA4311E59 /* Build configuration list for PBXNativeTarget "Pods-BLMultiColorLoader_Tests" */ = { 758 | isa = XCConfigurationList; 759 | buildConfigurations = ( 760 | A9C66578AEDADD888A894E1A81B24BB8 /* Debug */, 761 | 404C2024633842F2791CF98A7D5A3F43 /* Release */, 762 | ); 763 | defaultConfigurationIsVisible = 0; 764 | defaultConfigurationName = Release; 765 | }; 766 | D953883EB1EAB29EDB9CF77AC6336A72 /* Build configuration list for PBXNativeTarget "Pods-BLMultiColorLoader_Example" */ = { 767 | isa = XCConfigurationList; 768 | buildConfigurations = ( 769 | 8FE8A6B3CB06CC03117201DB8454269B /* Debug */, 770 | 45469C650C6AD52F94D971AD7A36778D /* Release */, 771 | ); 772 | defaultConfigurationIsVisible = 0; 773 | defaultConfigurationName = Release; 774 | }; 775 | F6237FA303CCA2A9C2C8F086061D5F56 /* Build configuration list for PBXNativeTarget "BLMultiColorLoader-BLMultiColorLoader" */ = { 776 | isa = XCConfigurationList; 777 | buildConfigurations = ( 778 | 56D6E648340C7D6F9AA59B780029C768 /* Debug */, 779 | 7BF38E9607E5C2631DB58FAD2337ACA0 /* Release */, 780 | ); 781 | defaultConfigurationIsVisible = 0; 782 | defaultConfigurationName = Release; 783 | }; 784 | /* End XCConfigurationList section */ 785 | }; 786 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 787 | } 788 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/BLMultiColorLoader.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 45 | 46 | 52 | 53 | 55 | 56 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/BLMultiColorLoader/BLMultiColorLoader-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_BLMultiColorLoader : NSObject 3 | @end 4 | @implementation PodsDummy_BLMultiColorLoader 5 | @end 6 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/BLMultiColorLoader/BLMultiColorLoader-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/BLMultiColorLoader/BLMultiColorLoader-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "BLMultiColorLoader.h" 4 | 5 | FOUNDATION_EXPORT double BLMultiColorLoaderVersionNumber; 6 | FOUNDATION_EXPORT const unsigned char BLMultiColorLoaderVersionString[]; 7 | 8 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/BLMultiColorLoader/BLMultiColorLoader.modulemap: -------------------------------------------------------------------------------- 1 | framework module BLMultiColorLoader { 2 | umbrella header "BLMultiColorLoader-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/BLMultiColorLoader/BLMultiColorLoader.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BLMultiColorLoader" "${PODS_ROOT}/Headers/Public" 3 | OTHER_LDFLAGS = -framework "UIKit" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/BLMultiColorLoader/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 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 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 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 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## BLMultiColorLoader 5 | 6 | The MIT License (MIT) 7 | 8 | Copyright (c) 2015 Babu Lal 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | Generated by CocoaPods - http://cocoapods.org 28 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_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 | The MIT License (MIT) 18 | 19 | Copyright (c) 2015 Babu Lal 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy 22 | of this software and associated documentation files (the "Software"), to deal 23 | in the Software without restriction, including without limitation the rights 24 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 25 | copies of the Software, and to permit persons to whom the Software is 26 | furnished to do so, subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in all 29 | copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 33 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 35 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 36 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 37 | SOFTWARE. 38 | Title 39 | BLMultiColorLoader 40 | Type 41 | PSGroupSpecifier 42 | 43 | 44 | FooterText 45 | Generated by CocoaPods - http://cocoapods.org 46 | Title 47 | 48 | Type 49 | PSGroupSpecifier 50 | 51 | 52 | StringsTable 53 | Acknowledgements 54 | Title 55 | Acknowledgements 56 | 57 | 58 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_BLMultiColorLoader_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_BLMultiColorLoader_Example 5 | @end 6 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_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="${CONFIGURATION_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} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --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 "Pods-BLMultiColorLoader_Example/BLMultiColorLoader.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "Pods-BLMultiColorLoader_Example/BLMultiColorLoader.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_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 | realpath() { 12 | DIRECTORY="$(cd "${1%/*}" && pwd)" 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 22 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 23 | ;; 24 | *.xib) 25 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 26 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 63 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 64 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 65 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 66 | fi 67 | rm -f "$RESOURCES_TO_COPY" 68 | 69 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 70 | then 71 | case "${TARGETED_DEVICE_FAMILY}" in 72 | 1,2) 73 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 74 | ;; 75 | 1) 76 | TARGET_DEVICE_ARGS="--target-device iphone" 77 | ;; 78 | 2) 79 | TARGET_DEVICE_ARGS="--target-device ipad" 80 | ;; 81 | *) 82 | TARGET_DEVICE_ARGS="--target-device mac" 83 | ;; 84 | esac 85 | 86 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 87 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 88 | while read line; do 89 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 90 | XCASSET_FILES+=("$line") 91 | fi 92 | done <<<"$OTHER_XCASSETS" 93 | 94 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 95 | fi 96 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_BLMultiColorLoader_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_BLMultiColorLoader_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/BLMultiColorLoader.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "BLMultiColorLoader" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BLMultiColorLoader_Example 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_BLMultiColorLoader_Example { 2 | umbrella header "Pods-BLMultiColorLoader_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Example/Pods-BLMultiColorLoader_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/BLMultiColorLoader.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "BLMultiColorLoader" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BLMultiColorLoader_Example 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 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 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## BLMultiColorLoader 5 | 6 | The MIT License (MIT) 7 | 8 | Copyright (c) 2015 Babu Lal 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | Generated by CocoaPods - http://cocoapods.org 28 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_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 | The MIT License (MIT) 18 | 19 | Copyright (c) 2015 Babu Lal 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy 22 | of this software and associated documentation files (the "Software"), to deal 23 | in the Software without restriction, including without limitation the rights 24 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 25 | copies of the Software, and to permit persons to whom the Software is 26 | furnished to do so, subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in all 29 | copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 33 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 35 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 36 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 37 | SOFTWARE. 38 | Title 39 | BLMultiColorLoader 40 | Type 41 | PSGroupSpecifier 42 | 43 | 44 | FooterText 45 | Generated by CocoaPods - http://cocoapods.org 46 | Title 47 | 48 | Type 49 | PSGroupSpecifier 50 | 51 | 52 | StringsTable 53 | Acknowledgements 54 | Title 55 | Acknowledgements 56 | 57 | 58 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_BLMultiColorLoader_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_BLMultiColorLoader_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_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="${CONFIGURATION_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} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --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 "Pods-BLMultiColorLoader_Tests/BLMultiColorLoader.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "Pods-BLMultiColorLoader_Tests/BLMultiColorLoader.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_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 | realpath() { 12 | DIRECTORY="$(cd "${1%/*}" && pwd)" 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 22 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 23 | ;; 24 | *.xib) 25 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 26 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 63 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 64 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 65 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 66 | fi 67 | rm -f "$RESOURCES_TO_COPY" 68 | 69 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 70 | then 71 | case "${TARGETED_DEVICE_FAMILY}" in 72 | 1,2) 73 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 74 | ;; 75 | 1) 76 | TARGET_DEVICE_ARGS="--target-device iphone" 77 | ;; 78 | 2) 79 | TARGET_DEVICE_ARGS="--target-device ipad" 80 | ;; 81 | *) 82 | TARGET_DEVICE_ARGS="--target-device mac" 83 | ;; 84 | esac 85 | 86 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 87 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 88 | while read line; do 89 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 90 | XCASSET_FILES+=("$line") 91 | fi 92 | done <<<"$OTHER_XCASSETS" 93 | 94 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 95 | fi 96 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_BLMultiColorLoader_TestsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_BLMultiColorLoader_TestsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/BLMultiColorLoader.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "BLMultiColorLoader" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BLMultiColorLoader_Tests 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_BLMultiColorLoader_Tests { 2 | umbrella header "Pods-BLMultiColorLoader_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Pods/Target Support Files/Pods-BLMultiColorLoader_Tests/Pods-BLMultiColorLoader_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/BLMultiColorLoader.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "BLMultiColorLoader" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-BLMultiColorLoader_Tests 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Tests/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 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // The contents of this file are implicitly included at the beginning of every test case source file. 2 | 3 | #ifdef __OBJC__ 4 | 5 | 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // BLMultiColorLoaderTests.m 3 | // BLMultiColorLoaderTests 4 | // 5 | // Created by Babulal Poonia on 03/12/2016. 6 | // Copyright (c) 2016 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | @import XCTest; 10 | 11 | @interface Tests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation Tests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | 36 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BLMultiColorLoader/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Babu Lal 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /BLMultiColorLoader/Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooniawalla/BLMultiColorLoader/587b5b7dbcf01b1442169ee3d42d5c1288860a66/BLMultiColorLoader/Pod/Assets/.gitkeep -------------------------------------------------------------------------------- /BLMultiColorLoader/Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooniawalla/BLMultiColorLoader/587b5b7dbcf01b1442169ee3d42d5c1288860a66/BLMultiColorLoader/Pod/Classes/.gitkeep -------------------------------------------------------------------------------- /BLMultiColorLoader/Pod/Classes/BLMultiColorLoader.h: -------------------------------------------------------------------------------- 1 | // 2 | // BLMultiColorLoader.h 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BLMultiColorLoader : UIView 12 | 13 | /** 14 | * Array of UIColor 15 | */ 16 | @property (nonatomic, strong) NSArray *colorArray; 17 | 18 | /** 19 | * lineWidth of the stroke 20 | */ 21 | @property (nonatomic) CGFloat lineWidth; 22 | 23 | - (void)startAnimation; 24 | - (void)stopAnimation; 25 | - (void)stopAnimationAfter:(NSTimeInterval)timeInterval; 26 | - (BOOL)isAnimating; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /BLMultiColorLoader/Pod/Classes/BLMultiColorLoader.m: -------------------------------------------------------------------------------- 1 | // 2 | // BLMultiColorLoader.m 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import "BLMultiColorLoader.h" 10 | 11 | #define ROUND_TIME 1.5 12 | #define DEFAULT_LINE_WIDTH 2.0 13 | #define DEFAULT_COLOR [UIColor orangeColor] 14 | 15 | @interface BLMultiColorLoader () 16 | 17 | @property (nonatomic, strong) CAShapeLayer *circleLayer; 18 | @property (nonatomic, strong) CAAnimationGroup *strokeLineAnimation; 19 | @property (nonatomic, strong) CAAnimation *rotationAnimation; 20 | @property (nonatomic, strong) CAAnimation *strokeColorAnimation; 21 | @property (nonatomic) BOOL animating; 22 | 23 | @end 24 | 25 | @implementation BLMultiColorLoader 26 | 27 | #pragma mark - Life Cycle 28 | - (instancetype)init { 29 | self = [super init]; 30 | if(self) { 31 | [self initialSetup]; 32 | } 33 | return self; 34 | } 35 | 36 | - (instancetype)initWithFrame:(CGRect)frame { 37 | self = [super initWithFrame:frame]; 38 | if(self) { 39 | [self initialSetup]; 40 | } 41 | return self; 42 | } 43 | 44 | - (instancetype)initWithCoder:(NSCoder *)aDecoder { 45 | self = [super initWithCoder:aDecoder]; 46 | if(self) { 47 | [self initialSetup]; 48 | } 49 | return self; 50 | } 51 | 52 | #pragma mark - Initial Setup 53 | 54 | - (void)initialSetup { 55 | self.circleLayer = [CAShapeLayer layer]; 56 | [self.layer addSublayer:self.circleLayer]; 57 | 58 | self.backgroundColor = [UIColor clearColor]; 59 | self.circleLayer.fillColor = nil; 60 | self.circleLayer.lineWidth = DEFAULT_LINE_WIDTH; 61 | self.circleLayer.lineCap = kCALineCapRound; 62 | 63 | _colorArray = @[DEFAULT_COLOR]; 64 | 65 | [self updateAnimations]; 66 | } 67 | 68 | #pragma mark - Layout 69 | - (void)layoutSubviews { 70 | [super layoutSubviews]; 71 | 72 | CGPoint center = CGPointMake(self.bounds.size.width / 2.0, self.bounds.size.height / 2.0); 73 | CGFloat radius = MIN(self.bounds.size.width, self.bounds.size.height)/2.0 - self.circleLayer.lineWidth / 2.0; 74 | CGFloat startAngle = 0; 75 | CGFloat endAngle = 2*M_PI; 76 | 77 | UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:center 78 | radius:radius 79 | startAngle:startAngle 80 | endAngle:endAngle 81 | clockwise:YES]; 82 | self.circleLayer.path = path.CGPath; 83 | self.circleLayer.frame = self.bounds; 84 | } 85 | 86 | #pragma mark - 87 | 88 | - (void)setColorArray:(NSArray *)colorArray{ 89 | if(colorArray.count>0){ 90 | _colorArray = colorArray; 91 | } 92 | [self updateAnimations]; 93 | } 94 | 95 | - (void)setLineWidth:(CGFloat)lineWidth { 96 | _lineWidth = lineWidth; 97 | self.circleLayer.lineWidth = _lineWidth; 98 | } 99 | 100 | #pragma mark - 101 | 102 | - (void)startAnimation { 103 | _animating = YES; 104 | [self.circleLayer addAnimation:self.strokeLineAnimation forKey:@"strokeLineAnimation"]; 105 | [self.circleLayer addAnimation:self.rotationAnimation forKey:@"rotationAnimation"]; 106 | [self.circleLayer addAnimation:self.strokeColorAnimation forKey:@"strokeColorAnimation"]; 107 | } 108 | 109 | - (void)stopAnimation { 110 | _animating = NO; 111 | [self.circleLayer removeAnimationForKey:@"strokeLineAnimation"]; 112 | [self.circleLayer removeAnimationForKey:@"rotationAnimation"]; 113 | [self.circleLayer removeAnimationForKey:@"strokeColorAnimation"]; 114 | } 115 | 116 | - (void)stopAnimationAfter:(NSTimeInterval)timeInterval 117 | { 118 | [self performSelector:@selector(stopAnimation) withObject:nil afterDelay:timeInterval]; 119 | } 120 | 121 | - (BOOL)isAnimating { 122 | return _animating; 123 | } 124 | 125 | #pragma mark - 126 | 127 | - (void)updateAnimations { 128 | // Stroke Head 129 | CABasicAnimation *headAnimation = [CABasicAnimation animationWithKeyPath:@"strokeStart"]; 130 | headAnimation.beginTime = ROUND_TIME/3.0; 131 | headAnimation.fromValue = @0; 132 | headAnimation.toValue = @1; 133 | headAnimation.duration = 2*ROUND_TIME/3.0; 134 | headAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; 135 | 136 | // Stroke Tail 137 | CABasicAnimation *tailAnimation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"]; 138 | tailAnimation.fromValue = @0; 139 | tailAnimation.toValue = @1; 140 | tailAnimation.duration = 2*ROUND_TIME/3.0; 141 | tailAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; 142 | 143 | // Stroke Line Group 144 | CAAnimationGroup *animationGroup = [CAAnimationGroup animation]; 145 | animationGroup.duration = ROUND_TIME; 146 | animationGroup.repeatCount = INFINITY; 147 | animationGroup.animations = @[headAnimation, tailAnimation]; 148 | self.strokeLineAnimation = animationGroup; 149 | 150 | // Rotation 151 | CABasicAnimation *rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"]; 152 | rotationAnimation.fromValue = @0; 153 | rotationAnimation.toValue = @(2*M_PI); 154 | rotationAnimation.duration = ROUND_TIME; 155 | rotationAnimation.repeatCount = INFINITY; 156 | self.rotationAnimation = rotationAnimation; 157 | 158 | CAKeyframeAnimation *strokeColorAnimation = [CAKeyframeAnimation animationWithKeyPath:@"strokeColor"]; 159 | strokeColorAnimation.values = [self prepareColorValues]; 160 | strokeColorAnimation.keyTimes = [self prepareKeyTimes]; 161 | strokeColorAnimation.calculationMode = kCAAnimationDiscrete; 162 | strokeColorAnimation.duration = self.colorArray.count * ROUND_TIME; 163 | strokeColorAnimation.repeatCount = INFINITY; 164 | self.strokeColorAnimation = strokeColorAnimation; 165 | } 166 | 167 | #pragma mark - Animation Data Preparation 168 | 169 | - (NSArray*)prepareColorValues { 170 | NSMutableArray *cgColorArray = [[NSMutableArray alloc] init]; 171 | for(UIColor *color in self.colorArray){ 172 | [cgColorArray addObject:(id)color.CGColor]; 173 | } 174 | return cgColorArray; 175 | } 176 | 177 | - (NSArray*)prepareKeyTimes { 178 | NSMutableArray *keyTimesArray = [[NSMutableArray alloc] init]; 179 | for(NSUInteger i=0; i 35 | #import "BLMultiColorLoader.h" 36 | 37 | @interface ViewController : UIViewController 38 | 39 | @property (weak, nonatomic) IBOutlet BLMultiColorLoader *multiColorLoader; 40 | 41 | @end 42 | ``` 43 | 44 | ```objective-c 45 | @implementation ViewController 46 | 47 | - (void)viewDidLoad { 48 | [super viewDidLoad]; 49 | 50 | // Customize the line width 51 | _multiColorLoader.lineWidth = 2.0; 52 | 53 | // Pass the custom colors array 54 | _multiColorLoader.colorArray = [NSArray arrayWithObjects:[UIColor redColor], 55 | [UIColor purpleColor], 56 | [UIColor greenColor], 57 | [UIColor blueColor], nil]; 58 | [_multiColorLoader startAnimation]; 59 | 60 | } 61 | 62 | - (void)doSomething 63 | { 64 | [_multiColorLoader startAnimation]; 65 | [XYZService fetchSomeData:^(){ 66 | [_multiColorLoader stopAnimation]; 67 | }]; 68 | } 69 | ``` 70 | 71 | ## Requirements 72 | 73 | - iOS 7 or higher 74 | - Automatic Reference Counting (ARC) 75 | 76 | ## Author 77 | 78 | - [Babulal Poonia](https://github.com/BLPoonia) ([@__poonia](https://twitter.com/__poonia)) 79 | 80 | ## Contribution 81 | 82 | - [Herrick Wolber](https://github.com/rico237) ([@estar2005](https://twitter.com/estar2005)) 83 | 84 | ## License 85 | 86 | BLMultiColorLoader is released under the MIT license. See the LICENSE file for more info. 87 | -------------------------------------------------------------------------------- /BLMultiColorLoader/_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Classes/BLMultiColorLoader.h: -------------------------------------------------------------------------------- 1 | // 2 | // BLMultiColorLoader.h 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BLMultiColorLoader : UIView 12 | 13 | /** 14 | * Array of UIColor 15 | */ 16 | @property (nonatomic, strong) NSArray *colorArray; 17 | 18 | /** 19 | * lineWidth of the stroke 20 | */ 21 | @property (nonatomic) CGFloat lineWidth; 22 | 23 | - (void)startAnimation; 24 | - (void)stopAnimation; 25 | - (void)stopAnimationAfter:(NSTimeInterval)timeInterval; 26 | - (BOOL)isAnimating; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Classes/BLMultiColorLoader.m: -------------------------------------------------------------------------------- 1 | // 2 | // BLMultiColorLoader.m 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import "BLMultiColorLoader.h" 10 | 11 | #define ROUND_TIME 1.5 12 | #define DEFAULT_LINE_WIDTH 2.0 13 | #define DEFAULT_COLOR [UIColor orangeColor] 14 | 15 | @interface BLMultiColorLoader () 16 | 17 | @property (nonatomic, strong) CAShapeLayer *circleLayer; 18 | @property (nonatomic, strong) CAAnimationGroup *strokeLineAnimation; 19 | @property (nonatomic, strong) CAAnimation *rotationAnimation; 20 | @property (nonatomic, strong) CAAnimation *strokeColorAnimation; 21 | @property (nonatomic) BOOL animating; 22 | 23 | @end 24 | 25 | @implementation BLMultiColorLoader 26 | 27 | #pragma mark - Life Cycle 28 | - (instancetype)init { 29 | self = [super init]; 30 | if(self) { 31 | [self initialSetup]; 32 | } 33 | return self; 34 | } 35 | 36 | - (instancetype)initWithFrame:(CGRect)frame { 37 | self = [super initWithFrame:frame]; 38 | if(self) { 39 | [self initialSetup]; 40 | } 41 | return self; 42 | } 43 | 44 | - (instancetype)initWithCoder:(NSCoder *)aDecoder { 45 | self = [super initWithCoder:aDecoder]; 46 | if(self) { 47 | [self initialSetup]; 48 | } 49 | return self; 50 | } 51 | 52 | #pragma mark - Initial Setup 53 | 54 | - (void)initialSetup { 55 | self.circleLayer = [CAShapeLayer layer]; 56 | [self.layer addSublayer:self.circleLayer]; 57 | 58 | self.backgroundColor = [UIColor clearColor]; 59 | self.circleLayer.fillColor = nil; 60 | self.circleLayer.lineWidth = DEFAULT_LINE_WIDTH; 61 | self.circleLayer.lineCap = kCALineCapRound; 62 | 63 | _colorArray = @[DEFAULT_COLOR]; 64 | 65 | [self updateAnimations]; 66 | } 67 | 68 | #pragma mark - Layout 69 | - (void)layoutSubviews { 70 | [super layoutSubviews]; 71 | 72 | CGPoint center = CGPointMake(self.bounds.size.width / 2.0, self.bounds.size.height / 2.0); 73 | CGFloat radius = MIN(self.bounds.size.width, self.bounds.size.height)/2.0 - self.circleLayer.lineWidth / 2.0; 74 | CGFloat startAngle = 0; 75 | CGFloat endAngle = 2*M_PI; 76 | 77 | UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:center 78 | radius:radius 79 | startAngle:startAngle 80 | endAngle:endAngle 81 | clockwise:YES]; 82 | self.circleLayer.path = path.CGPath; 83 | self.circleLayer.frame = self.bounds; 84 | } 85 | 86 | #pragma mark - 87 | 88 | - (void)setColorArray:(NSArray *)colorArray{ 89 | if(colorArray.count>0){ 90 | _colorArray = colorArray; 91 | } 92 | [self updateAnimations]; 93 | } 94 | 95 | - (void)setLineWidth:(CGFloat)lineWidth { 96 | _lineWidth = lineWidth; 97 | self.circleLayer.lineWidth = _lineWidth; 98 | } 99 | 100 | #pragma mark - 101 | 102 | - (void)startAnimation { 103 | _animating = YES; 104 | [self.circleLayer addAnimation:self.strokeLineAnimation forKey:@"strokeLineAnimation"]; 105 | [self.circleLayer addAnimation:self.rotationAnimation forKey:@"rotationAnimation"]; 106 | [self.circleLayer addAnimation:self.strokeColorAnimation forKey:@"strokeColorAnimation"]; 107 | } 108 | 109 | - (void)stopAnimation { 110 | _animating = NO; 111 | [self.circleLayer removeAnimationForKey:@"strokeLineAnimation"]; 112 | [self.circleLayer removeAnimationForKey:@"rotationAnimation"]; 113 | [self.circleLayer removeAnimationForKey:@"strokeColorAnimation"]; 114 | } 115 | 116 | - (void)stopAnimationAfter:(NSTimeInterval)timeInterval 117 | { 118 | [self performSelector:@selector(stopAnimation) withObject:nil afterDelay:timeInterval]; 119 | } 120 | 121 | - (BOOL)isAnimating { 122 | return _animating; 123 | } 124 | 125 | #pragma mark - 126 | 127 | - (void)updateAnimations { 128 | // Stroke Head 129 | CABasicAnimation *headAnimation = [CABasicAnimation animationWithKeyPath:@"strokeStart"]; 130 | headAnimation.beginTime = ROUND_TIME/3.0; 131 | headAnimation.fromValue = @0; 132 | headAnimation.toValue = @1; 133 | headAnimation.duration = 2*ROUND_TIME/3.0; 134 | headAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; 135 | 136 | // Stroke Tail 137 | CABasicAnimation *tailAnimation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"]; 138 | tailAnimation.fromValue = @0; 139 | tailAnimation.toValue = @1; 140 | tailAnimation.duration = 2*ROUND_TIME/3.0; 141 | tailAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; 142 | 143 | // Stroke Line Group 144 | CAAnimationGroup *animationGroup = [CAAnimationGroup animation]; 145 | animationGroup.duration = ROUND_TIME; 146 | animationGroup.repeatCount = INFINITY; 147 | animationGroup.animations = @[headAnimation, tailAnimation]; 148 | self.strokeLineAnimation = animationGroup; 149 | 150 | // Rotation 151 | CABasicAnimation *rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"]; 152 | rotationAnimation.fromValue = @0; 153 | rotationAnimation.toValue = @(2*M_PI); 154 | rotationAnimation.duration = ROUND_TIME; 155 | rotationAnimation.repeatCount = INFINITY; 156 | self.rotationAnimation = rotationAnimation; 157 | 158 | CAKeyframeAnimation *strokeColorAnimation = [CAKeyframeAnimation animationWithKeyPath:@"strokeColor"]; 159 | strokeColorAnimation.values = [self prepareColorValues]; 160 | strokeColorAnimation.keyTimes = [self prepareKeyTimes]; 161 | strokeColorAnimation.calculationMode = kCAAnimationDiscrete; 162 | strokeColorAnimation.duration = self.colorArray.count * ROUND_TIME; 163 | strokeColorAnimation.repeatCount = INFINITY; 164 | self.strokeColorAnimation = strokeColorAnimation; 165 | } 166 | 167 | #pragma mark - Animation Data Preparation 168 | 169 | - (NSArray*)prepareColorValues { 170 | NSMutableArray *cgColorArray = [[NSMutableArray alloc] init]; 171 | for(UIColor *color in self.colorArray){ 172 | [cgColorArray addObject:(id)color.CGColor]; 173 | } 174 | return cgColorArray; 175 | } 176 | 177 | - (NSArray*)prepareKeyTimes { 178 | NSMutableArray *keyTimesArray = [[NSMutableArray alloc] init]; 179 | for(NSUInteger i=0; i 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | 11 | @interface AppDelegate () 12 | 13 | @end 14 | 15 | @implementation AppDelegate 16 | 17 | 18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 19 | // Override point for customization after application launch. 20 | return YES; 21 | } 22 | 23 | - (void)applicationWillResignActive:(UIApplication *)application { 24 | // 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. 25 | // 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. 26 | } 27 | 28 | - (void)applicationDidEnterBackground:(UIApplication *)application { 29 | // 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. 30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 31 | } 32 | 33 | - (void)applicationWillEnterForeground:(UIApplication *)application { 34 | // 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. 35 | } 36 | 37 | - (void)applicationDidBecomeActive:(UIApplication *)application { 38 | // 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. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application { 42 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 43 | } 44 | 45 | @end 46 | -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/BLMultiColorLoader.h: -------------------------------------------------------------------------------- 1 | // 2 | // BLMultiColorLoader.h 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BLMultiColorLoader : UIView 12 | 13 | /** 14 | * Array of UIColor 15 | */ 16 | @property (nonatomic, strong) NSArray *colorArray; 17 | 18 | /** 19 | * lineWidth of the stroke 20 | */ 21 | @property (nonatomic) CGFloat lineWidth; 22 | 23 | - (void)startAnimation; 24 | - (void)stopAnimation; 25 | - (void)stopAnimationAfter:(NSTimeInterval)timeInterval; 26 | - (BOOL)isAnimating; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/BLMultiColorLoader.m: -------------------------------------------------------------------------------- 1 | // 2 | // BLMultiColorLoader.m 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import "BLMultiColorLoader.h" 10 | 11 | #define ROUND_TIME 1.5 12 | #define DEFAULT_LINE_WIDTH 2.0 13 | #define DEFAULT_COLOR [UIColor orangeColor] 14 | 15 | @interface BLMultiColorLoader () 16 | 17 | @property (nonatomic, strong) CAShapeLayer *circleLayer; 18 | @property (nonatomic, strong) CAAnimationGroup *strokeLineAnimation; 19 | @property (nonatomic, strong) CAAnimation *rotationAnimation; 20 | @property (nonatomic, strong) CAAnimation *strokeColorAnimation; 21 | @property (nonatomic) BOOL animating; 22 | 23 | @end 24 | 25 | @implementation BLMultiColorLoader 26 | 27 | #pragma mark - Life Cycle 28 | - (instancetype)init { 29 | self = [super init]; 30 | if(self) { 31 | [self initialSetup]; 32 | } 33 | return self; 34 | } 35 | 36 | - (instancetype)initWithFrame:(CGRect)frame { 37 | self = [super initWithFrame:frame]; 38 | if(self) { 39 | [self initialSetup]; 40 | } 41 | return self; 42 | } 43 | 44 | - (instancetype)initWithCoder:(NSCoder *)aDecoder { 45 | self = [super initWithCoder:aDecoder]; 46 | if(self) { 47 | [self initialSetup]; 48 | } 49 | return self; 50 | } 51 | 52 | #pragma mark - Initial Setup 53 | 54 | - (void)initialSetup { 55 | self.circleLayer = [CAShapeLayer layer]; 56 | [self.layer addSublayer:self.circleLayer]; 57 | 58 | self.backgroundColor = [UIColor clearColor]; 59 | self.circleLayer.fillColor = nil; 60 | self.circleLayer.lineWidth = DEFAULT_LINE_WIDTH; 61 | self.circleLayer.lineCap = kCALineCapRound; 62 | 63 | _colorArray = @[DEFAULT_COLOR]; 64 | 65 | [self updateAnimations]; 66 | } 67 | 68 | #pragma mark - Layout 69 | - (void)layoutSubviews { 70 | [super layoutSubviews]; 71 | 72 | CGPoint center = CGPointMake(self.bounds.size.width / 2.0, self.bounds.size.height / 2.0); 73 | CGFloat radius = MIN(self.bounds.size.width, self.bounds.size.height)/2.0 - self.circleLayer.lineWidth / 2.0; 74 | CGFloat startAngle = 0; 75 | CGFloat endAngle = 2*M_PI; 76 | 77 | UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:center 78 | radius:radius 79 | startAngle:startAngle 80 | endAngle:endAngle 81 | clockwise:YES]; 82 | self.circleLayer.path = path.CGPath; 83 | self.circleLayer.frame = self.bounds; 84 | } 85 | 86 | #pragma mark - 87 | 88 | - (void)setColorArray:(NSArray *)colorArray{ 89 | if(colorArray.count>0){ 90 | _colorArray = colorArray; 91 | } 92 | [self updateAnimations]; 93 | } 94 | 95 | - (void)setLineWidth:(CGFloat)lineWidth { 96 | _lineWidth = lineWidth; 97 | self.circleLayer.lineWidth = _lineWidth; 98 | } 99 | 100 | #pragma mark - 101 | 102 | - (void)startAnimation { 103 | _animating = YES; 104 | [self.circleLayer addAnimation:self.strokeLineAnimation forKey:@"strokeLineAnimation"]; 105 | [self.circleLayer addAnimation:self.rotationAnimation forKey:@"rotationAnimation"]; 106 | [self.circleLayer addAnimation:self.strokeColorAnimation forKey:@"strokeColorAnimation"]; 107 | } 108 | 109 | - (void)stopAnimation { 110 | _animating = NO; 111 | [self.circleLayer removeAnimationForKey:@"strokeLineAnimation"]; 112 | [self.circleLayer removeAnimationForKey:@"rotationAnimation"]; 113 | [self.circleLayer removeAnimationForKey:@"strokeColorAnimation"]; 114 | } 115 | 116 | - (void)stopAnimationAfter:(NSTimeInterval)timeInterval 117 | { 118 | [self performSelector:@selector(stopAnimation) withObject:nil afterDelay:timeInterval]; 119 | } 120 | 121 | - (BOOL)isAnimating { 122 | return _animating; 123 | } 124 | 125 | #pragma mark - 126 | 127 | - (void)updateAnimations { 128 | // Stroke Head 129 | CABasicAnimation *headAnimation = [CABasicAnimation animationWithKeyPath:@"strokeStart"]; 130 | headAnimation.beginTime = ROUND_TIME/3.0; 131 | headAnimation.fromValue = @0; 132 | headAnimation.toValue = @1; 133 | headAnimation.duration = 2*ROUND_TIME/3.0; 134 | headAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; 135 | 136 | // Stroke Tail 137 | CABasicAnimation *tailAnimation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"]; 138 | tailAnimation.fromValue = @0; 139 | tailAnimation.toValue = @1; 140 | tailAnimation.duration = 2*ROUND_TIME/3.0; 141 | tailAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; 142 | 143 | // Stroke Line Group 144 | CAAnimationGroup *animationGroup = [CAAnimationGroup animation]; 145 | animationGroup.duration = ROUND_TIME; 146 | animationGroup.repeatCount = INFINITY; 147 | animationGroup.animations = @[headAnimation, tailAnimation]; 148 | self.strokeLineAnimation = animationGroup; 149 | 150 | // Rotation 151 | CABasicAnimation *rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"]; 152 | rotationAnimation.fromValue = @0; 153 | rotationAnimation.toValue = @(2*M_PI); 154 | rotationAnimation.duration = ROUND_TIME; 155 | rotationAnimation.repeatCount = INFINITY; 156 | self.rotationAnimation = rotationAnimation; 157 | 158 | CAKeyframeAnimation *strokeColorAnimation = [CAKeyframeAnimation animationWithKeyPath:@"strokeColor"]; 159 | strokeColorAnimation.values = [self prepareColorValues]; 160 | strokeColorAnimation.keyTimes = [self prepareKeyTimes]; 161 | strokeColorAnimation.calculationMode = kCAAnimationDiscrete; 162 | strokeColorAnimation.duration = self.colorArray.count * ROUND_TIME; 163 | strokeColorAnimation.repeatCount = INFINITY; 164 | self.strokeColorAnimation = strokeColorAnimation; 165 | } 166 | 167 | #pragma mark - Animation Data Preparation 168 | 169 | - (NSArray*)prepareColorValues { 170 | NSMutableArray *cgColorArray = [[NSMutableArray alloc] init]; 171 | for(UIColor *color in self.colorArray){ 172 | [cgColorArray addObject:(id)color.CGColor]; 173 | } 174 | return cgColorArray; 175 | } 176 | 177 | - (NSArray*)prepareKeyTimes { 178 | NSMutableArray *keyTimesArray = [[NSMutableArray alloc] init]; 179 | for(NSUInteger i=0; i 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 | -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | BL.$(PRODUCT_NAME:rfc1034identifier) 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 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BLMultiColorLoader.h" 11 | 12 | @interface ViewController : UIViewController 13 | 14 | @property (weak, nonatomic) IBOutlet BLMultiColorLoader *multiColorLoader; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/ViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.m 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import "ViewController.h" 10 | 11 | @implementation ViewController 12 | 13 | - (void)viewDidLoad { 14 | [super viewDidLoad]; 15 | 16 | _multiColorLoader.lineWidth = 2.0; 17 | _multiColorLoader.colorArray = [NSArray arrayWithObjects:[UIColor redColor], 18 | [UIColor purpleColor], 19 | [UIColor greenColor], 20 | [UIColor blueColor], nil]; 21 | [_multiColorLoader startAnimation]; 22 | 23 | } 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /DemoForBasicUsage/Demo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Demo 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DemoForBasicUsage/DemoTests/DemoTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // DemoTests.m 3 | // DemoTests 4 | // 5 | // Created by Poonia on 12/09/15. 6 | // Copyright (c) 2015 Babulal Poonia. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface DemoTests : XCTestCase 13 | 14 | @end 15 | 16 | @implementation DemoTests 17 | 18 | - (void)setUp { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown { 24 | // Put teardown code here. This method is called after the invocation of each test method in the class. 25 | [super tearDown]; 26 | } 27 | 28 | - (void)testExample { 29 | // This is an example of a functional test case. 30 | XCTAssert(YES, @"Pass"); 31 | } 32 | 33 | - (void)testPerformanceExample { 34 | // This is an example of a performance test case. 35 | [self measureBlock:^{ 36 | // Put the code you want to measure the time of here. 37 | }]; 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /DemoForBasicUsage/DemoTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | BL.$(PRODUCT_NAME:rfc1034identifier) 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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Babu Lal 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BLMultiColorLoader 2 | 3 | Simple, easy to use, multi coloured and customisable loading indicator (loader) for iOS applications. 4 | 5 | [![Version](https://img.shields.io/cocoapods/v/BLMultiColorLoader.svg?style=flat)](http://cocoapods.org/pods/BLMultiColorLoader) 6 | [![License](https://img.shields.io/cocoapods/l/BLMultiColorLoader.svg?style=flat)](http://cocoapods.org/pods/BLMultiColorLoader) 7 | [![Platform](https://img.shields.io/cocoapods/p/BLMultiColorLoader.svg?style=flat)](http://cocoapods.org/pods/BLMultiColorLoader) 8 | 9 | ## Screenshots 10 | 11 | ![Demo](./Screens/loader_screenshot.gif "Demo View") 12 | 13 | ### Usage 14 | 15 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 16 | 17 | ## Installation 18 | 19 | BLMultiColorLoader is available through [CocoaPods](http://cocoapods.org). To install 20 | it, simply add the following line to your Podfile: 21 | 22 | ```ruby 23 | pod "BLMultiColorLoader" 24 | ``` 25 | 26 | ## Basic usage 27 | 28 | Add BLMultiColorLoader class ("BLMultiColorLoader.h" and "BLMultiColorLoader.m") into your project. 29 | 30 | ```objective-c 31 | #import 32 | #import "BLMultiColorLoader.h" 33 | 34 | @interface ViewController : UIViewController 35 | 36 | @property (weak, nonatomic) IBOutlet BLMultiColorLoader *multiColorLoader; 37 | 38 | @end 39 | ``` 40 | 41 | ```objective-c 42 | @implementation ViewController 43 | 44 | - (void)viewDidLoad { 45 | [super viewDidLoad]; 46 | 47 | // Customize the line width 48 | _multiColorLoader.lineWidth = 2.0; 49 | 50 | // Pass the custom colors array 51 | _multiColorLoader.colorArray = [NSArray arrayWithObjects:[UIColor redColor], 52 | [UIColor purpleColor], 53 | [UIColor greenColor], 54 | [UIColor blueColor], nil]; 55 | [_multiColorLoader startAnimation]; 56 | 57 | } 58 | 59 | - (void)doSomething 60 | { 61 | [_multiColorLoader startAnimation]; 62 | [XYZService fetchSomeData:^(){ 63 | [_multiColorLoader stopAnimation]; 64 | }]; 65 | } 66 | ``` 67 | 68 | ## Requirements 69 | 70 | - iOS 7 or higher 71 | - Automatic Reference Counting (ARC) 72 | 73 | ## Author 74 | 75 | - [Babulal Poonia](https://github.com/BLPoonia) ([@ixpoonia](https://twitter.com/ixpoonia)) 76 | 77 | ## Contribution 78 | 79 | - [Herrick Wolber](https://github.com/rico237) ([@estar2005](https://twitter.com/estar2005)) 80 | 81 | ## License 82 | 83 | BLMultiColorLoader is released under the MIT license. See the LICENSE file for more info. 84 | -------------------------------------------------------------------------------- /Screens/loader_screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooniawalla/BLMultiColorLoader/587b5b7dbcf01b1442169ee3d42d5c1288860a66/Screens/loader_screenshot.gif --------------------------------------------------------------------------------