├── .swift-version ├── Dots ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── UIColor+hex.swift │ ├── DotView.swift │ └── DotsLoadingView.swift ├── _Pods.xcodeproj ├── dots_mono.gif ├── dots_pink.gif ├── dots_header.png ├── dots_twitter.gif ├── ezgif.com-video-to-gif.gif ├── Example ├── Pods │ ├── Target Support Files │ │ ├── Dots │ │ │ ├── Dots.modulemap │ │ │ ├── Dots-dummy.m │ │ │ ├── Dots-prefix.pch │ │ │ ├── Dots-umbrella.h │ │ │ ├── Dots.xcconfig │ │ │ └── Info.plist │ │ └── Pods-Dots_Example │ │ │ ├── Pods-Dots_Example.modulemap │ │ │ ├── Pods-Dots_Example-dummy.m │ │ │ ├── Pods-Dots_Example-umbrella.h │ │ │ ├── Pods-Dots_Example.debug.xcconfig │ │ │ ├── Pods-Dots_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-Dots_Example-acknowledgements.markdown │ │ │ ├── Pods-Dots_Example-acknowledgements.plist │ │ │ ├── Pods-Dots_Example-frameworks.sh │ │ │ └── Pods-Dots_Example-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── Dots.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── Dots.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Dots-Example.xcscheme │ └── project.pbxproj ├── Dots.xcworkspace │ └── contents.xcworkspacedata ├── Podfile.lock └── Dots │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── UIColor+hex.swift │ ├── Info.plist │ ├── ViewController.swift │ ├── AppDelegate.swift │ └── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── .travis.yml ├── .gitignore ├── DotsLoading.podspec ├── LICENSE └── README.md /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Dots/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dots/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /dots_mono.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makomori/Dots/HEAD/dots_mono.gif -------------------------------------------------------------------------------- /dots_pink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makomori/Dots/HEAD/dots_pink.gif -------------------------------------------------------------------------------- /dots_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makomori/Dots/HEAD/dots_header.png -------------------------------------------------------------------------------- /dots_twitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makomori/Dots/HEAD/dots_twitter.gif -------------------------------------------------------------------------------- /ezgif.com-video-to-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makomori/Dots/HEAD/ezgif.com-video-to-gif.gif -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Dots/Dots.modulemap: -------------------------------------------------------------------------------- 1 | framework module Dots { 2 | umbrella header "Dots-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Dots/Dots-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Dots : NSObject 3 | @end 4 | @implementation PodsDummy_Dots 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'Dots_Example' do 4 | pod 'Dots', :path => '../' 5 | 6 | target 'Dots_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Dots_Example { 2 | umbrella header "Pods-Dots_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Dots_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Dots_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Dots.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Dots/Dots-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/Dots.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Dots (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - Dots (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | Dots: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | Dots: 97c3a3a4dcb0deb0615a671c97d6f10521d9e5f1 13 | 14 | PODFILE CHECKSUM: e4c9b40db8cd72126b3d47b5af04e47cf6bb2b46 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Dots (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - Dots (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | Dots: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | Dots: 97c3a3a4dcb0deb0615a671c97d6f10521d9e5f1 13 | 14 | PODFILE CHECKSUM: e4c9b40db8cd72126b3d47b5af04e47cf6bb2b46 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Dots/Dots-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double DotsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char DotsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_Dots_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_Dots_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -workspace Example/Dots.xcworkspace -scheme Dots-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Dots/Dots.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Dots 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/Dots.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Dots", 3 | "version": "0.1.0", 4 | "summary": "A short description of Dots.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/makomori/Dots", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "makomori": "makomori26@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/makomori/Dots.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "Dots/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Dots" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Dots/Dots.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "Dots" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Dots" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Dots/Dots.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "Dots" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /Example/Dots/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 | } 39 | -------------------------------------------------------------------------------- /DotsLoading.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'DotsLoading' 3 | s.version = '1.0.0' 4 | s.summary = 'Modern loading indicator for iOS 10 which allows the app to use Google-like dots animation for loading indicator.' 5 | 6 | s.description = 'Modern loading indicator for iOS 10 which allows the app to use Google-like dots animation for loading indicator with just two lines..' 7 | 8 | s.homepage = 'https://github.com/makomori/Dots' 9 | s.license = { :type => 'MIT', :file => 'LICENSE' } 10 | s.author = { 'makomori' => 'makomori26@gmail.com' } 11 | s.source = { :git => 'https://github.com/makomori/Dots.git', :tag => s.version.to_s } 12 | # s.social_media_url = 'https://twitter.com/makomori26>' 13 | 14 | s.ios.deployment_target = '10.0' 15 | 16 | s.source_files = 'Dots/Classes/**/*' 17 | end 18 | -------------------------------------------------------------------------------- /Dots/Classes/UIColor+hex.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+hex.swift 3 | // Pods 4 | // 5 | // Created by 母利睦人 on 2017/05/11. 6 | // 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIColor { 12 | class func hexStr ( hexStr : NSString, alpha : CGFloat) -> UIColor { 13 | var hexStr = hexStr 14 | let alpha = alpha 15 | hexStr = hexStr.replacingOccurrences(of: "#", with: "") as NSString 16 | let scanner = Scanner(string: hexStr as String) 17 | var color: UInt32 = 0 18 | if scanner.scanHexInt32(&color) { 19 | let r = CGFloat((color & 0xFF0000) >> 16) / 255.0 20 | let g = CGFloat((color & 0x00FF00) >> 8) / 255.0 21 | let b = CGFloat(color & 0x0000FF) / 255.0 22 | return UIColor(red:r,green:g,blue:b,alpha:alpha) 23 | } else { 24 | // Invalid hex string 25 | print("invalid hex string") 26 | return UIColor.white; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Example/Dots/UIColor+hex.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+hex.swift 3 | // Pods 4 | // 5 | // Created by 母利睦人 on 2017/05/11. 6 | // 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIColor { 12 | class func hexStr ( hexStr : NSString, alpha : CGFloat) -> UIColor { 13 | var hexStr = hexStr 14 | let alpha = alpha 15 | hexStr = hexStr.replacingOccurrences(of: "#", with: "") as NSString 16 | let scanner = Scanner(string: hexStr as String) 17 | var color: UInt32 = 0 18 | if scanner.scanHexInt32(&color) { 19 | let r = CGFloat((color & 0xFF0000) >> 16) / 255.0 20 | let g = CGFloat((color & 0x00FF00) >> 8) / 255.0 21 | let b = CGFloat(color & 0x0000FF) / 255.0 22 | return UIColor(red:r,green:g,blue:b,alpha:alpha) 23 | } else { 24 | // Invalid hex string 25 | print("invalid hex string") 26 | return UIColor.white; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Dots/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 makomori 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Example/Dots/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## Dots 5 | 6 | Copyright (c) 2017 makomori 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Dots/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // Dots 4 | // 5 | // Created by makomori on 05/11/2017. 6 | // Copyright (c) 2017 makomori. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import Dots 11 | 12 | class ViewController: UIViewController { 13 | var loadingView: DotsLoadingView? 14 | 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | } 18 | 19 | @IBAction func showGoogleProgress(_ sender: Any) { 20 | self.stop(self) 21 | self.loadingView = DotsLoadingView(colors: nil) 22 | self.loadingView?.show() 23 | } 24 | 25 | @IBAction func showCustomProgress(_ sender: Any) { 26 | self.stop(self) 27 | let firstColor = UIColor(red: 1.0, green: 0.631, blue: 0.761, alpha: 1.0) 28 | let secondColor = UIColor(red: 1.0, green: 0.431, blue: 0.631, alpha: 1.0) 29 | let thirdColor = UIColor(red: 1.0, green: 0.259, blue: 0.522, alpha: 1.0) 30 | let fourthColor = UIColor(red: 1.0, green: 0.082, blue: 0.408, alpha: 1.0) 31 | self.loadingView = DotsLoadingView(colors: [firstColor, secondColor, thirdColor, fourthColor]) 32 | self.loadingView?.show() 33 | } 34 | 35 | @IBAction func stop(_ sender: Any) { 36 | if let _ = self.loadingView { 37 | self.loadingView?.stop() 38 | self.loadingView = nil 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /Example/Dots/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Dots 4 | // 5 | // Created by makomori on 05/11/2017. 6 | // Copyright (c) 2017 makomori. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![dots_header](https://github.com/makomori/Dots/blob/master/dots_header.png "dots header") 2 | 3 | # Dots 4 | 5 | [![CI Status](http://img.shields.io/travis/makomori/Dots.svg?style=flat)](https://travis-ci.org/makomori/Dots) 6 | [![Version](https://img.shields.io/cocoapods/v/Dots.svg?style=flat)](http://cocoapods.org/pods/Dots) 7 | [![License](https://img.shields.io/cocoapods/l/Dots.svg?style=flat)](http://cocoapods.org/pods/Dots) 8 | [![Platform](https://img.shields.io/cocoapods/p/Dots.svg?style=flat)](http://cocoapods.org/pods/Dots) 9 | 10 | Dots is the replacement of UIActivityIndicatorView. It provides modern and highly customizable loading indicator. You can call this dots loading view from everywhere in your program with just 2 lines of code. 11 | 12 | ## GIFs 13 | ### Google color 14 | ![gif](https://github.com/makomori/Dots/blob/master/ezgif.com-video-to-gif.gif "dots gif") 15 | 16 | ### Pink gradient 17 | ![gif](https://github.com/makomori/Dots/blob/master/dots_pink.gif "pink gif") 18 | 19 | ### Twitter color 20 | ![gif](https://github.com/makomori/Dots/blob/master/dots_twitter.gif "twitter gif") 21 | 22 | 23 | ## Example 24 | 25 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 26 | 27 | ## Requirements 28 | iOS 10.0 + 29 | 30 | ## Installation 31 | 32 | I've submited this pod 10 days ago, but still can't install via Cocoapods. Maybe we need to wait more. If you have any clue why we can't use this pod, let me know. Thank you. 33 | 34 | ``` ruby 35 | pod 'DotsLoading' 36 | ``` 37 | 38 | ## Usage 39 | In your ViewController, run below. 40 | 41 | ### Show 42 | 43 | ```swift 44 | let loadingView = DotsLoadingView(colors: nil) 45 | self.view.addSubview(loadingView) 46 | ``` 47 | 48 | ### Hide 49 | 50 | ```swift 51 | loadingView.stop() 52 | ``` 53 | 54 | ## Customization 55 | You can use custom dot colors. 56 | 57 | Note: You need to create array which includes four UIColors. If you specify less than or more than 4 colors, the colors of dots will be default. 58 | 59 | ```swift 60 | let dotColors = [UIColor.red, UIColor.blue, UIColor.green, UIColor.yellow] 61 | let loadingView = DotsLoadingView(colors: dotColors) 62 | self.view.addSubview(loadingView) 63 | ``` 64 | 65 | ## Author 66 | 67 | makomori, makomori26@gmail.com 68 | 69 | ## License 70 | 71 | Dots is available under the MIT license. See the LICENSE file for more info. 72 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2017 makomori <makomori26@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | Dots 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Dots/Classes/DotView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DotView.swift 3 | // Dots 4 | // 5 | // Created by 母利睦人 on 2017/05/11. 6 | // Copyright © 2017年 makomori. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class DotView: UIView { 12 | private let expandRate: CGFloat = 2.0 13 | private let animationDuration = 0.4 14 | private var expanding = false 15 | private var animationDelay: Double? 16 | 17 | init(color: UIColor, delay: Double, frame: CGRect) { 18 | super.init(frame: frame) 19 | 20 | // Create circle shape 21 | self.layer.cornerRadius = self.frame.width / 2 22 | self.clipsToBounds = true 23 | 24 | self.backgroundColor = color 25 | self.animationDelay = delay 26 | self.startAnimation() 27 | } 28 | 29 | required init?(coder aDecoder: NSCoder) { 30 | fatalError("init(coder:) has not been implemented") 31 | } 32 | 33 | private func startAnimation() { 34 | if #available(iOS 10.0, *) { 35 | var animator = UIViewPropertyAnimator(duration: self.animationDuration, curve: .linear) 36 | if self.expanding { 37 | // shrink 38 | animator = UIViewPropertyAnimator(duration: self.animationDuration / 1.05, curve: .easeInOut) 39 | animator.addAnimations({ 40 | // animate transform 41 | self.transform = CGAffineTransform(scaleX: 1.0, y: 1.0) 42 | }) 43 | } else { 44 | // expand 45 | animator.addAnimations({ 46 | // animate transform 47 | self.transform = CGAffineTransform(scaleX: self.expandRate, y: self.expandRate) 48 | }) 49 | } 50 | 51 | animator.addCompletion { _ in 52 | self.startAnimation() 53 | } 54 | 55 | animator.startAnimation(afterDelay: self.animationDelay!) 56 | // update expanding boolean value 57 | if self.expanding { 58 | self.expanding = false 59 | // set animation delay for expand 60 | self.animationDelay = 0.9 61 | } else { 62 | self.expanding = true 63 | // set animation delay for shrink 64 | self.animationDelay = 0.1 65 | } 66 | } else { 67 | // Fallback on earlier versions 68 | print("It's only availabel from iOS 10") 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /Dots/Classes/DotsLoadingView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DotsLoadingView.swift 3 | // Dots 4 | // 5 | // Created by 母利睦人 on 2017/05/11. 6 | // Copyright © 2017年 makomori. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public class DotsLoadingView: UIView { 12 | private let delay = 0.25 13 | private let length = 15 14 | 15 | public let loadingViewBackgroundColor = UIColor.white 16 | 17 | private let myBlue = UIColor.hexStr(hexStr: "#4284F7", alpha: 1.0) 18 | private let myRed = UIColor.hexStr(hexStr: "#F74239", alpha: 1.0) 19 | private let myYellow = UIColor.hexStr(hexStr: "#FDBC02", alpha: 1.0) 20 | private let myGreen = UIColor.hexStr(hexStr: "#4AB552", alpha: 1.0) 21 | public var colors: [UIColor] = [] 22 | private var dots: [DotView] = [] 23 | 24 | public init(colors: [UIColor]?) { 25 | super.init(frame: CGRect(x: 0, y: 0, width: 150, height: 100)) 26 | self.backgroundColor = UIColor.clear 27 | if let customColors = colors { 28 | if customColors.count == 4 { 29 | // set custom colors 30 | self.colors = customColors 31 | } else { 32 | print("You can set custom colors only if you set four colors.") 33 | self.colors = [myBlue, myRed, myYellow, myGreen] 34 | } 35 | } else { 36 | self.colors = [myBlue, myRed, myYellow, myGreen] 37 | } 38 | } 39 | 40 | required public init?(coder aDecoder: NSCoder) { 41 | fatalError("init(coder:) has not been implemented") 42 | } 43 | 44 | public func show() { 45 | if let rootViewController = UIApplication.shared.windows.first?.rootViewController { 46 | rootViewController.view.addSubview(self) 47 | self.center = rootViewController.view.center 48 | self.startAnimation() 49 | } else { 50 | print("Cannot show DotsLoadingView.") 51 | } 52 | } 53 | 54 | public func stop() { 55 | if #available(iOS 10.0, *) { 56 | let animator = UIViewPropertyAnimator(duration: 0.5, curve: .easeInOut) { 57 | for dot in self.dots { 58 | dot.alpha = 0 59 | } 60 | } 61 | animator.startAnimation() 62 | animator.addCompletion { _ in 63 | self.removeFromSuperview() 64 | } 65 | } else { 66 | // Fallback on earlier versions 67 | print("It's only availabel from iOS 10") 68 | } 69 | } 70 | 71 | private func startAnimation() { 72 | for i in 0.. 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | 91 | if [[ "$CONFIGURATION" == "Debug" ]]; then 92 | install_framework "$BUILT_PRODUCTS_DIR/Dots/Dots.framework" 93 | fi 94 | if [[ "$CONFIGURATION" == "Release" ]]; then 95 | install_framework "$BUILT_PRODUCTS_DIR/Dots/Dots.framework" 96 | fi 97 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 98 | wait 99 | fi 100 | -------------------------------------------------------------------------------- /Example/Dots.xcodeproj/xcshareddata/xcschemes/Dots-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | 4) 25 | TARGET_DEVICE_ARGS="--target-device watch" 26 | ;; 27 | *) 28 | TARGET_DEVICE_ARGS="--target-device mac" 29 | ;; 30 | esac 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "${PODS_ROOT}*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 102 | fi 103 | -------------------------------------------------------------------------------- /Example/Dots/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 34 | 41 | 42 | 43 | 44 | 45 | 46 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /Example/Dots.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 11 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 12 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 13 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 14 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 15 | A4CC2DBD8359DBBC755CDA10 /* Pods_Dots_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E8136C6D48399F5624943C20 /* Pods_Dots_Example.framework */; }; 16 | FB71582C1EC75AFA003BFEB1 /* UIColor+hex.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB71582B1EC75AFA003BFEB1 /* UIColor+hex.swift */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXFileReference section */ 20 | 607FACD01AFB9204008FA782 /* Dots_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Dots_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 21 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 22 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 23 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 24 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 25 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 26 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 27 | 63A5B947EE3DE89792DC1DAA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 28 | B32D1F9DBCC172DAF110D791 /* Pods-Dots_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Dots_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example.debug.xcconfig"; sourceTree = ""; }; 29 | DEF0542AEE8F0BA07354F8FF /* Pods-Dots_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Dots_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example.release.xcconfig"; sourceTree = ""; }; 30 | E8136C6D48399F5624943C20 /* Pods_Dots_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Dots_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 31 | F5AAF43E694642A259B59B87 /* Dots.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Dots.podspec; path = ../Dots.podspec; sourceTree = ""; }; 32 | FB71582B1EC75AFA003BFEB1 /* UIColor+hex.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIColor+hex.swift"; sourceTree = ""; }; 33 | FBE51CD5138F58FD1B9BEC78 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 34 | /* End PBXFileReference section */ 35 | 36 | /* Begin PBXFrameworksBuildPhase section */ 37 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 38 | isa = PBXFrameworksBuildPhase; 39 | buildActionMask = 2147483647; 40 | files = ( 41 | A4CC2DBD8359DBBC755CDA10 /* Pods_Dots_Example.framework in Frameworks */, 42 | ); 43 | runOnlyForDeploymentPostprocessing = 0; 44 | }; 45 | /* End PBXFrameworksBuildPhase section */ 46 | 47 | /* Begin PBXGroup section */ 48 | 607FACC71AFB9204008FA782 = { 49 | isa = PBXGroup; 50 | children = ( 51 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 52 | 607FACD21AFB9204008FA782 /* Example for Dots */, 53 | 607FACD11AFB9204008FA782 /* Products */, 54 | 8B7057C5A2CE725F0E15F42A /* Pods */, 55 | 95F537AC0F8BECC125E1B63D /* Frameworks */, 56 | ); 57 | sourceTree = ""; 58 | }; 59 | 607FACD11AFB9204008FA782 /* Products */ = { 60 | isa = PBXGroup; 61 | children = ( 62 | 607FACD01AFB9204008FA782 /* Dots_Example.app */, 63 | ); 64 | name = Products; 65 | sourceTree = ""; 66 | }; 67 | 607FACD21AFB9204008FA782 /* Example for Dots */ = { 68 | isa = PBXGroup; 69 | children = ( 70 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 71 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 72 | FB71582B1EC75AFA003BFEB1 /* UIColor+hex.swift */, 73 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 74 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 75 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 76 | 607FACD31AFB9204008FA782 /* Supporting Files */, 77 | ); 78 | name = "Example for Dots"; 79 | path = Dots; 80 | sourceTree = ""; 81 | }; 82 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 83 | isa = PBXGroup; 84 | children = ( 85 | 607FACD41AFB9204008FA782 /* Info.plist */, 86 | ); 87 | name = "Supporting Files"; 88 | sourceTree = ""; 89 | }; 90 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 91 | isa = PBXGroup; 92 | children = ( 93 | F5AAF43E694642A259B59B87 /* Dots.podspec */, 94 | FBE51CD5138F58FD1B9BEC78 /* README.md */, 95 | 63A5B947EE3DE89792DC1DAA /* LICENSE */, 96 | ); 97 | name = "Podspec Metadata"; 98 | sourceTree = ""; 99 | }; 100 | 8B7057C5A2CE725F0E15F42A /* Pods */ = { 101 | isa = PBXGroup; 102 | children = ( 103 | B32D1F9DBCC172DAF110D791 /* Pods-Dots_Example.debug.xcconfig */, 104 | DEF0542AEE8F0BA07354F8FF /* Pods-Dots_Example.release.xcconfig */, 105 | ); 106 | name = Pods; 107 | sourceTree = ""; 108 | }; 109 | 95F537AC0F8BECC125E1B63D /* Frameworks */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | E8136C6D48399F5624943C20 /* Pods_Dots_Example.framework */, 113 | ); 114 | name = Frameworks; 115 | sourceTree = ""; 116 | }; 117 | /* End PBXGroup section */ 118 | 119 | /* Begin PBXNativeTarget section */ 120 | 607FACCF1AFB9204008FA782 /* Dots_Example */ = { 121 | isa = PBXNativeTarget; 122 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Dots_Example" */; 123 | buildPhases = ( 124 | 49AE4EF91C968DB89F856C3D /* [CP] Check Pods Manifest.lock */, 125 | 607FACCC1AFB9204008FA782 /* Sources */, 126 | 607FACCD1AFB9204008FA782 /* Frameworks */, 127 | 607FACCE1AFB9204008FA782 /* Resources */, 128 | FDA39AD940E15B1882999F1D /* [CP] Embed Pods Frameworks */, 129 | 44A867F02D47B31D382B8B16 /* [CP] Copy Pods Resources */, 130 | ); 131 | buildRules = ( 132 | ); 133 | dependencies = ( 134 | ); 135 | name = Dots_Example; 136 | productName = Dots; 137 | productReference = 607FACD01AFB9204008FA782 /* Dots_Example.app */; 138 | productType = "com.apple.product-type.application"; 139 | }; 140 | /* End PBXNativeTarget section */ 141 | 142 | /* Begin PBXProject section */ 143 | 607FACC81AFB9204008FA782 /* Project object */ = { 144 | isa = PBXProject; 145 | attributes = { 146 | LastSwiftUpdateCheck = 0720; 147 | LastUpgradeCheck = 0820; 148 | ORGANIZATIONNAME = CocoaPods; 149 | TargetAttributes = { 150 | 607FACCF1AFB9204008FA782 = { 151 | CreatedOnToolsVersion = 6.3.1; 152 | LastSwiftMigration = 0820; 153 | }; 154 | }; 155 | }; 156 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "Dots" */; 157 | compatibilityVersion = "Xcode 3.2"; 158 | developmentRegion = English; 159 | hasScannedForEncodings = 0; 160 | knownRegions = ( 161 | en, 162 | Base, 163 | ); 164 | mainGroup = 607FACC71AFB9204008FA782; 165 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 166 | projectDirPath = ""; 167 | projectRoot = ""; 168 | targets = ( 169 | 607FACCF1AFB9204008FA782 /* Dots_Example */, 170 | ); 171 | }; 172 | /* End PBXProject section */ 173 | 174 | /* Begin PBXResourcesBuildPhase section */ 175 | 607FACCE1AFB9204008FA782 /* Resources */ = { 176 | isa = PBXResourcesBuildPhase; 177 | buildActionMask = 2147483647; 178 | files = ( 179 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 180 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 181 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 182 | ); 183 | runOnlyForDeploymentPostprocessing = 0; 184 | }; 185 | /* End PBXResourcesBuildPhase section */ 186 | 187 | /* Begin PBXShellScriptBuildPhase section */ 188 | 44A867F02D47B31D382B8B16 /* [CP] Copy Pods Resources */ = { 189 | isa = PBXShellScriptBuildPhase; 190 | buildActionMask = 2147483647; 191 | files = ( 192 | ); 193 | inputPaths = ( 194 | ); 195 | name = "[CP] Copy Pods Resources"; 196 | outputPaths = ( 197 | ); 198 | runOnlyForDeploymentPostprocessing = 0; 199 | shellPath = /bin/sh; 200 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example-resources.sh\"\n"; 201 | showEnvVarsInLog = 0; 202 | }; 203 | 49AE4EF91C968DB89F856C3D /* [CP] Check Pods Manifest.lock */ = { 204 | isa = PBXShellScriptBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | ); 208 | inputPaths = ( 209 | ); 210 | name = "[CP] Check Pods Manifest.lock"; 211 | outputPaths = ( 212 | ); 213 | runOnlyForDeploymentPostprocessing = 0; 214 | shellPath = /bin/sh; 215 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; 216 | showEnvVarsInLog = 0; 217 | }; 218 | FDA39AD940E15B1882999F1D /* [CP] Embed Pods Frameworks */ = { 219 | isa = PBXShellScriptBuildPhase; 220 | buildActionMask = 2147483647; 221 | files = ( 222 | ); 223 | inputPaths = ( 224 | ); 225 | name = "[CP] Embed Pods Frameworks"; 226 | outputPaths = ( 227 | ); 228 | runOnlyForDeploymentPostprocessing = 0; 229 | shellPath = /bin/sh; 230 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Dots_Example/Pods-Dots_Example-frameworks.sh\"\n"; 231 | showEnvVarsInLog = 0; 232 | }; 233 | /* End PBXShellScriptBuildPhase section */ 234 | 235 | /* Begin PBXSourcesBuildPhase section */ 236 | 607FACCC1AFB9204008FA782 /* Sources */ = { 237 | isa = PBXSourcesBuildPhase; 238 | buildActionMask = 2147483647; 239 | files = ( 240 | FB71582C1EC75AFA003BFEB1 /* UIColor+hex.swift in Sources */, 241 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 242 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 243 | ); 244 | runOnlyForDeploymentPostprocessing = 0; 245 | }; 246 | /* End PBXSourcesBuildPhase section */ 247 | 248 | /* Begin PBXVariantGroup section */ 249 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 250 | isa = PBXVariantGroup; 251 | children = ( 252 | 607FACDA1AFB9204008FA782 /* Base */, 253 | ); 254 | name = Main.storyboard; 255 | sourceTree = ""; 256 | }; 257 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 258 | isa = PBXVariantGroup; 259 | children = ( 260 | 607FACDF1AFB9204008FA782 /* Base */, 261 | ); 262 | name = LaunchScreen.xib; 263 | sourceTree = ""; 264 | }; 265 | /* End PBXVariantGroup section */ 266 | 267 | /* Begin XCBuildConfiguration section */ 268 | 607FACED1AFB9204008FA782 /* Debug */ = { 269 | isa = XCBuildConfiguration; 270 | buildSettings = { 271 | ALWAYS_SEARCH_USER_PATHS = NO; 272 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 273 | CLANG_CXX_LIBRARY = "libc++"; 274 | CLANG_ENABLE_MODULES = YES; 275 | CLANG_ENABLE_OBJC_ARC = YES; 276 | CLANG_WARN_BOOL_CONVERSION = YES; 277 | CLANG_WARN_CONSTANT_CONVERSION = YES; 278 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 279 | CLANG_WARN_EMPTY_BODY = YES; 280 | CLANG_WARN_ENUM_CONVERSION = YES; 281 | CLANG_WARN_INFINITE_RECURSION = YES; 282 | CLANG_WARN_INT_CONVERSION = YES; 283 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 284 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 285 | CLANG_WARN_UNREACHABLE_CODE = YES; 286 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 287 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 288 | COPY_PHASE_STRIP = NO; 289 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 290 | ENABLE_STRICT_OBJC_MSGSEND = YES; 291 | ENABLE_TESTABILITY = YES; 292 | GCC_C_LANGUAGE_STANDARD = gnu99; 293 | GCC_DYNAMIC_NO_PIC = NO; 294 | GCC_NO_COMMON_BLOCKS = YES; 295 | GCC_OPTIMIZATION_LEVEL = 0; 296 | GCC_PREPROCESSOR_DEFINITIONS = ( 297 | "DEBUG=1", 298 | "$(inherited)", 299 | ); 300 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 301 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 302 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 303 | GCC_WARN_UNDECLARED_SELECTOR = YES; 304 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 305 | GCC_WARN_UNUSED_FUNCTION = YES; 306 | GCC_WARN_UNUSED_VARIABLE = YES; 307 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 308 | MTL_ENABLE_DEBUG_INFO = YES; 309 | ONLY_ACTIVE_ARCH = YES; 310 | SDKROOT = iphoneos; 311 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 312 | }; 313 | name = Debug; 314 | }; 315 | 607FACEE1AFB9204008FA782 /* Release */ = { 316 | isa = XCBuildConfiguration; 317 | buildSettings = { 318 | ALWAYS_SEARCH_USER_PATHS = NO; 319 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 320 | CLANG_CXX_LIBRARY = "libc++"; 321 | CLANG_ENABLE_MODULES = YES; 322 | CLANG_ENABLE_OBJC_ARC = YES; 323 | CLANG_WARN_BOOL_CONVERSION = YES; 324 | CLANG_WARN_CONSTANT_CONVERSION = YES; 325 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 326 | CLANG_WARN_EMPTY_BODY = YES; 327 | CLANG_WARN_ENUM_CONVERSION = YES; 328 | CLANG_WARN_INFINITE_RECURSION = YES; 329 | CLANG_WARN_INT_CONVERSION = YES; 330 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 331 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 332 | CLANG_WARN_UNREACHABLE_CODE = YES; 333 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 334 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 335 | COPY_PHASE_STRIP = NO; 336 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 337 | ENABLE_NS_ASSERTIONS = NO; 338 | ENABLE_STRICT_OBJC_MSGSEND = YES; 339 | GCC_C_LANGUAGE_STANDARD = gnu99; 340 | GCC_NO_COMMON_BLOCKS = YES; 341 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 342 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 343 | GCC_WARN_UNDECLARED_SELECTOR = YES; 344 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 345 | GCC_WARN_UNUSED_FUNCTION = YES; 346 | GCC_WARN_UNUSED_VARIABLE = YES; 347 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 348 | MTL_ENABLE_DEBUG_INFO = NO; 349 | SDKROOT = iphoneos; 350 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 351 | VALIDATE_PRODUCT = YES; 352 | }; 353 | name = Release; 354 | }; 355 | 607FACF01AFB9204008FA782 /* Debug */ = { 356 | isa = XCBuildConfiguration; 357 | baseConfigurationReference = B32D1F9DBCC172DAF110D791 /* Pods-Dots_Example.debug.xcconfig */; 358 | buildSettings = { 359 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 360 | INFOPLIST_FILE = Dots/Info.plist; 361 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 362 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 363 | MODULE_NAME = ExampleApp; 364 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 365 | PRODUCT_NAME = "$(TARGET_NAME)"; 366 | SWIFT_VERSION = 3.0; 367 | }; 368 | name = Debug; 369 | }; 370 | 607FACF11AFB9204008FA782 /* Release */ = { 371 | isa = XCBuildConfiguration; 372 | baseConfigurationReference = DEF0542AEE8F0BA07354F8FF /* Pods-Dots_Example.release.xcconfig */; 373 | buildSettings = { 374 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 375 | INFOPLIST_FILE = Dots/Info.plist; 376 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 377 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 378 | MODULE_NAME = ExampleApp; 379 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 380 | PRODUCT_NAME = "$(TARGET_NAME)"; 381 | SWIFT_VERSION = 3.0; 382 | }; 383 | name = Release; 384 | }; 385 | /* End XCBuildConfiguration section */ 386 | 387 | /* Begin XCConfigurationList section */ 388 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "Dots" */ = { 389 | isa = XCConfigurationList; 390 | buildConfigurations = ( 391 | 607FACED1AFB9204008FA782 /* Debug */, 392 | 607FACEE1AFB9204008FA782 /* Release */, 393 | ); 394 | defaultConfigurationIsVisible = 0; 395 | defaultConfigurationName = Release; 396 | }; 397 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Dots_Example" */ = { 398 | isa = XCConfigurationList; 399 | buildConfigurations = ( 400 | 607FACF01AFB9204008FA782 /* Debug */, 401 | 607FACF11AFB9204008FA782 /* Release */, 402 | ); 403 | defaultConfigurationIsVisible = 0; 404 | defaultConfigurationName = Release; 405 | }; 406 | /* End XCConfigurationList section */ 407 | }; 408 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 409 | } 410 | -------------------------------------------------------------------------------- /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 | 09E49026E5C0E77A6E0F5582C7F91908 /* Pods-Dots_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 468F64FE328C3E9819EE86F8B2937574 /* Pods-Dots_Example-dummy.m */; }; 11 | 300E87D8ED9A745BD2D090BB9C4C1453 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 12 | 4BFE2DA906B6200DC657D2A9FDCDC88C /* DotView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F20591B24D4ECA96494886B5763DE7B0 /* DotView.swift */; }; 13 | 60BE893F491EA303E5A3051B2DB43CBB /* Dots-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 224C0AC533F4CB6C1520998820659815 /* Dots-dummy.m */; }; 14 | 81DE8C2C5F9034498A92FBA46AB1E6DD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 15 | 87C137C65327DD2D7A77DC71E802D41F /* DotsLoadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 116E850D1199D517177CD8A460FF4930 /* DotsLoadingView.swift */; }; 16 | 8D08A0FAB5EAF260110BE1C1E17271E6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 17 | 91CD06FA627D1C4F4EBA077447D85E0B /* Dots-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D2343827AEE266EE5F0DD34EEBCFF0A0 /* Dots-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | 91F78B580CF04FE58B6A76C771C3F7BD /* UIColor+hex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F65C18337833A9516206FFDD885CB51 /* UIColor+hex.swift */; }; 19 | 944EEACC6651843605C4DF3C7D343C5B /* Pods-Dots_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A8C2E5A82B48B9D3DAE15FE9872414B /* Pods-Dots_Tests-dummy.m */; }; 20 | A47D6C01049051D85412BB5D0A22FFC4 /* Pods-Dots_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B78EA548BD68573ADC8D4FAE87EE323 /* Pods-Dots_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 21 | DCA3E21EE3C3DF85138FC46776F4B360 /* Pods-Dots_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72C364CBA3594DA31A973A55CED0DE75 /* Pods-Dots_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | A5B61BDC00355751770ED0ECE97EB850 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = B83DD70CCDCFF85E204ADD09A2250A82; 30 | remoteInfo = Dots; 31 | }; 32 | /* End PBXContainerItemProxy section */ 33 | 34 | /* Begin PBXFileReference section */ 35 | 000AC01359774D2157ADCA1E441FB62D /* Pods-Dots_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Dots_Tests-acknowledgements.markdown"; sourceTree = ""; }; 36 | 042229514C28985080E67E8873F46551 /* Dots.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Dots.modulemap; sourceTree = ""; }; 37 | 04593F563B0F315509BF12AD428E16C4 /* Pods-Dots_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Dots_Example-resources.sh"; sourceTree = ""; }; 38 | 0B35E9399B4C6D684F3CA95BF385D88C /* Pods-Dots_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Dots_Example.release.xcconfig"; sourceTree = ""; }; 39 | 116E850D1199D517177CD8A460FF4930 /* DotsLoadingView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DotsLoadingView.swift; sourceTree = ""; }; 40 | 1B703A5950A2F40238BAB34550F7F933 /* Pods-Dots_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Dots_Tests-resources.sh"; sourceTree = ""; }; 41 | 1BFF21D4C8440A60053070A01606EE83 /* Pods_Dots_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Dots_Tests.framework; path = "Pods-Dots_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 1C183CFCFD4B6F7759C4B3999DB5D77A /* Pods-Dots_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-Dots_Example.modulemap"; sourceTree = ""; }; 43 | 1CF06F1E73AF93F2592A6B4D60C7D55F /* Pods-Dots_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Dots_Tests-acknowledgements.plist"; sourceTree = ""; }; 44 | 224C0AC533F4CB6C1520998820659815 /* Dots-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Dots-dummy.m"; sourceTree = ""; }; 45 | 253FB0AED8014311C5A1F1D629A32C3C /* Pods-Dots_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Dots_Tests.debug.xcconfig"; sourceTree = ""; }; 46 | 2A8C2E5A82B48B9D3DAE15FE9872414B /* Pods-Dots_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Dots_Tests-dummy.m"; sourceTree = ""; }; 47 | 2B78EA548BD68573ADC8D4FAE87EE323 /* Pods-Dots_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Dots_Example-umbrella.h"; sourceTree = ""; }; 48 | 2F33114B4E29DBC36A2555FF63DEFD06 /* Pods_Dots_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Dots_Example.framework; path = "Pods-Dots_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | 35774BD6B4D3064993886DE3A5462C07 /* Dots-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Dots-prefix.pch"; sourceTree = ""; }; 50 | 369E3C436059B6ED6DD667947A49FE5F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 51 | 3F57EE4F9BA5363F6CFC699BFE4E483D /* Dots.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Dots.xcconfig; sourceTree = ""; }; 52 | 3F82F5470F2AE8F282738B087CFC30C0 /* Pods-Dots_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Dots_Tests.release.xcconfig"; sourceTree = ""; }; 53 | 449F53AE0C989D28D7E6872F091A3EF0 /* Pods-Dots_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Dots_Example.debug.xcconfig"; sourceTree = ""; }; 54 | 453A00A6446A7C79A2D34B7EABFB402D /* Pods-Dots_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Dots_Example-acknowledgements.markdown"; sourceTree = ""; }; 55 | 468F64FE328C3E9819EE86F8B2937574 /* Pods-Dots_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Dots_Example-dummy.m"; sourceTree = ""; }; 56 | 57FCDB40274F97D25A5306EFD8187C1B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 57 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 58 | 6F65C18337833A9516206FFDD885CB51 /* UIColor+hex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "UIColor+hex.swift"; sourceTree = ""; }; 59 | 72C364CBA3594DA31A973A55CED0DE75 /* Pods-Dots_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Dots_Tests-umbrella.h"; sourceTree = ""; }; 60 | 72F644E0CA3927474AE34205278EAB02 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 61 | 8A4614766EDCB702554D33B5F61103AF /* Dots.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Dots.framework; path = Dots.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 62 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 63 | 97481BC4E78B9404F8598C412D73A45C /* Pods-Dots_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-Dots_Tests.modulemap"; sourceTree = ""; }; 64 | A7E8D3F3FBB6259CC23904E3DBB03AEB /* Pods-Dots_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Dots_Example-acknowledgements.plist"; sourceTree = ""; }; 65 | ADFE272C75EDCA949C0BC906844E0A10 /* Pods-Dots_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Dots_Tests-frameworks.sh"; sourceTree = ""; }; 66 | BAD98FB53B9D35086C6A63B3E074C41A /* Pods-Dots_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Dots_Example-frameworks.sh"; sourceTree = ""; }; 67 | D2343827AEE266EE5F0DD34EEBCFF0A0 /* Dots-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Dots-umbrella.h"; sourceTree = ""; }; 68 | F20591B24D4ECA96494886B5763DE7B0 /* DotView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DotView.swift; sourceTree = ""; }; 69 | /* End PBXFileReference section */ 70 | 71 | /* Begin PBXFrameworksBuildPhase section */ 72 | 402D1BA81F1D6BFA1CA3CCBB33F539B0 /* Frameworks */ = { 73 | isa = PBXFrameworksBuildPhase; 74 | buildActionMask = 2147483647; 75 | files = ( 76 | 300E87D8ED9A745BD2D090BB9C4C1453 /* Foundation.framework in Frameworks */, 77 | ); 78 | runOnlyForDeploymentPostprocessing = 0; 79 | }; 80 | 8C159BF4B1E6BFD4C2D0705B8F8CFCAF /* Frameworks */ = { 81 | isa = PBXFrameworksBuildPhase; 82 | buildActionMask = 2147483647; 83 | files = ( 84 | 8D08A0FAB5EAF260110BE1C1E17271E6 /* Foundation.framework in Frameworks */, 85 | ); 86 | runOnlyForDeploymentPostprocessing = 0; 87 | }; 88 | DCD686EFB5587C322EA538BB757B2EDC /* Frameworks */ = { 89 | isa = PBXFrameworksBuildPhase; 90 | buildActionMask = 2147483647; 91 | files = ( 92 | 81DE8C2C5F9034498A92FBA46AB1E6DD /* Foundation.framework in Frameworks */, 93 | ); 94 | runOnlyForDeploymentPostprocessing = 0; 95 | }; 96 | /* End PBXFrameworksBuildPhase section */ 97 | 98 | /* Begin PBXGroup section */ 99 | 36C0F0C2E294A0413ABEE2FD8B691688 /* Dots */ = { 100 | isa = PBXGroup; 101 | children = ( 102 | 82364F91DE030FDF5A91502C884E6D24 /* Classes */, 103 | ); 104 | name = Dots; 105 | path = Dots; 106 | sourceTree = ""; 107 | }; 108 | 4A984260459B6831FEFF8124B56E4B03 /* Pods-Dots_Example */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | 72F644E0CA3927474AE34205278EAB02 /* Info.plist */, 112 | 1C183CFCFD4B6F7759C4B3999DB5D77A /* Pods-Dots_Example.modulemap */, 113 | 453A00A6446A7C79A2D34B7EABFB402D /* Pods-Dots_Example-acknowledgements.markdown */, 114 | A7E8D3F3FBB6259CC23904E3DBB03AEB /* Pods-Dots_Example-acknowledgements.plist */, 115 | 468F64FE328C3E9819EE86F8B2937574 /* Pods-Dots_Example-dummy.m */, 116 | BAD98FB53B9D35086C6A63B3E074C41A /* Pods-Dots_Example-frameworks.sh */, 117 | 04593F563B0F315509BF12AD428E16C4 /* Pods-Dots_Example-resources.sh */, 118 | 2B78EA548BD68573ADC8D4FAE87EE323 /* Pods-Dots_Example-umbrella.h */, 119 | 449F53AE0C989D28D7E6872F091A3EF0 /* Pods-Dots_Example.debug.xcconfig */, 120 | 0B35E9399B4C6D684F3CA95BF385D88C /* Pods-Dots_Example.release.xcconfig */, 121 | ); 122 | name = "Pods-Dots_Example"; 123 | path = "Target Support Files/Pods-Dots_Example"; 124 | sourceTree = ""; 125 | }; 126 | 5F2D88B73B9BB8712AFB4D0083638888 /* Pods-Dots_Tests */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | 57FCDB40274F97D25A5306EFD8187C1B /* Info.plist */, 130 | 97481BC4E78B9404F8598C412D73A45C /* Pods-Dots_Tests.modulemap */, 131 | 000AC01359774D2157ADCA1E441FB62D /* Pods-Dots_Tests-acknowledgements.markdown */, 132 | 1CF06F1E73AF93F2592A6B4D60C7D55F /* Pods-Dots_Tests-acknowledgements.plist */, 133 | 2A8C2E5A82B48B9D3DAE15FE9872414B /* Pods-Dots_Tests-dummy.m */, 134 | ADFE272C75EDCA949C0BC906844E0A10 /* Pods-Dots_Tests-frameworks.sh */, 135 | 1B703A5950A2F40238BAB34550F7F933 /* Pods-Dots_Tests-resources.sh */, 136 | 72C364CBA3594DA31A973A55CED0DE75 /* Pods-Dots_Tests-umbrella.h */, 137 | 253FB0AED8014311C5A1F1D629A32C3C /* Pods-Dots_Tests.debug.xcconfig */, 138 | 3F82F5470F2AE8F282738B087CFC30C0 /* Pods-Dots_Tests.release.xcconfig */, 139 | ); 140 | name = "Pods-Dots_Tests"; 141 | path = "Target Support Files/Pods-Dots_Tests"; 142 | sourceTree = ""; 143 | }; 144 | 7DB346D0F39D3F0E887471402A8071AB = { 145 | isa = PBXGroup; 146 | children = ( 147 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 148 | B564C2A48C174E1201A5A868234A5252 /* Development Pods */, 149 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 150 | BB40509AA69D912308FE2D5100266269 /* Products */, 151 | D685F0D4917B51592A02CE9FE80B2281 /* Targets Support Files */, 152 | ); 153 | sourceTree = ""; 154 | }; 155 | 7FFCEA50BE91079FDEA4282866909BF9 /* Dots */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | 36C0F0C2E294A0413ABEE2FD8B691688 /* Dots */, 159 | B0B5484247FCD3332E94EB19254E0223 /* Support Files */, 160 | ); 161 | name = Dots; 162 | path = ../..; 163 | sourceTree = ""; 164 | }; 165 | 82364F91DE030FDF5A91502C884E6D24 /* Classes */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | 116E850D1199D517177CD8A460FF4930 /* DotsLoadingView.swift */, 169 | F20591B24D4ECA96494886B5763DE7B0 /* DotView.swift */, 170 | 6F65C18337833A9516206FFDD885CB51 /* UIColor+hex.swift */, 171 | ); 172 | name = Classes; 173 | path = Classes; 174 | sourceTree = ""; 175 | }; 176 | B0B5484247FCD3332E94EB19254E0223 /* Support Files */ = { 177 | isa = PBXGroup; 178 | children = ( 179 | 042229514C28985080E67E8873F46551 /* Dots.modulemap */, 180 | 3F57EE4F9BA5363F6CFC699BFE4E483D /* Dots.xcconfig */, 181 | 224C0AC533F4CB6C1520998820659815 /* Dots-dummy.m */, 182 | 35774BD6B4D3064993886DE3A5462C07 /* Dots-prefix.pch */, 183 | D2343827AEE266EE5F0DD34EEBCFF0A0 /* Dots-umbrella.h */, 184 | 369E3C436059B6ED6DD667947A49FE5F /* Info.plist */, 185 | ); 186 | name = "Support Files"; 187 | path = "Example/Pods/Target Support Files/Dots"; 188 | sourceTree = ""; 189 | }; 190 | B564C2A48C174E1201A5A868234A5252 /* Development Pods */ = { 191 | isa = PBXGroup; 192 | children = ( 193 | 7FFCEA50BE91079FDEA4282866909BF9 /* Dots */, 194 | ); 195 | name = "Development Pods"; 196 | sourceTree = ""; 197 | }; 198 | BB40509AA69D912308FE2D5100266269 /* Products */ = { 199 | isa = PBXGroup; 200 | children = ( 201 | 8A4614766EDCB702554D33B5F61103AF /* Dots.framework */, 202 | 2F33114B4E29DBC36A2555FF63DEFD06 /* Pods_Dots_Example.framework */, 203 | 1BFF21D4C8440A60053070A01606EE83 /* Pods_Dots_Tests.framework */, 204 | ); 205 | name = Products; 206 | sourceTree = ""; 207 | }; 208 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 209 | isa = PBXGroup; 210 | children = ( 211 | D35AF013A5F0BAD4F32504907A52519E /* iOS */, 212 | ); 213 | name = Frameworks; 214 | sourceTree = ""; 215 | }; 216 | D35AF013A5F0BAD4F32504907A52519E /* iOS */ = { 217 | isa = PBXGroup; 218 | children = ( 219 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */, 220 | ); 221 | name = iOS; 222 | sourceTree = ""; 223 | }; 224 | D685F0D4917B51592A02CE9FE80B2281 /* Targets Support Files */ = { 225 | isa = PBXGroup; 226 | children = ( 227 | 4A984260459B6831FEFF8124B56E4B03 /* Pods-Dots_Example */, 228 | 5F2D88B73B9BB8712AFB4D0083638888 /* Pods-Dots_Tests */, 229 | ); 230 | name = "Targets Support Files"; 231 | sourceTree = ""; 232 | }; 233 | /* End PBXGroup section */ 234 | 235 | /* Begin PBXHeadersBuildPhase section */ 236 | 756DCA57D02F186B34D33E032265B3E1 /* Headers */ = { 237 | isa = PBXHeadersBuildPhase; 238 | buildActionMask = 2147483647; 239 | files = ( 240 | 91CD06FA627D1C4F4EBA077447D85E0B /* Dots-umbrella.h in Headers */, 241 | ); 242 | runOnlyForDeploymentPostprocessing = 0; 243 | }; 244 | A3D3A5BBCDE6A412022CB2D26810FAED /* Headers */ = { 245 | isa = PBXHeadersBuildPhase; 246 | buildActionMask = 2147483647; 247 | files = ( 248 | DCA3E21EE3C3DF85138FC46776F4B360 /* Pods-Dots_Tests-umbrella.h in Headers */, 249 | ); 250 | runOnlyForDeploymentPostprocessing = 0; 251 | }; 252 | BCA48392EEBEA86D8017CB6C66E0DD5B /* Headers */ = { 253 | isa = PBXHeadersBuildPhase; 254 | buildActionMask = 2147483647; 255 | files = ( 256 | A47D6C01049051D85412BB5D0A22FFC4 /* Pods-Dots_Example-umbrella.h in Headers */, 257 | ); 258 | runOnlyForDeploymentPostprocessing = 0; 259 | }; 260 | /* End PBXHeadersBuildPhase section */ 261 | 262 | /* Begin PBXNativeTarget section */ 263 | 2A08FD17DA0E5EDDD31F7E10B24BD3B2 /* Pods-Dots_Tests */ = { 264 | isa = PBXNativeTarget; 265 | buildConfigurationList = 840DE407E082CCE2E671726D8DD9DBFE /* Build configuration list for PBXNativeTarget "Pods-Dots_Tests" */; 266 | buildPhases = ( 267 | 0FBDCF4DA36165EF12B8F092C1ADDBDB /* Sources */, 268 | DCD686EFB5587C322EA538BB757B2EDC /* Frameworks */, 269 | A3D3A5BBCDE6A412022CB2D26810FAED /* Headers */, 270 | ); 271 | buildRules = ( 272 | ); 273 | dependencies = ( 274 | ); 275 | name = "Pods-Dots_Tests"; 276 | productName = "Pods-Dots_Tests"; 277 | productReference = 1BFF21D4C8440A60053070A01606EE83 /* Pods_Dots_Tests.framework */; 278 | productType = "com.apple.product-type.framework"; 279 | }; 280 | B83DD70CCDCFF85E204ADD09A2250A82 /* Dots */ = { 281 | isa = PBXNativeTarget; 282 | buildConfigurationList = 9F8C0C33F99D0BF7A8EB06AAF7052446 /* Build configuration list for PBXNativeTarget "Dots" */; 283 | buildPhases = ( 284 | 753E0CFF6E48607DC68C5006B6BEFE6C /* Sources */, 285 | 402D1BA81F1D6BFA1CA3CCBB33F539B0 /* Frameworks */, 286 | 756DCA57D02F186B34D33E032265B3E1 /* Headers */, 287 | ); 288 | buildRules = ( 289 | ); 290 | dependencies = ( 291 | ); 292 | name = Dots; 293 | productName = Dots; 294 | productReference = 8A4614766EDCB702554D33B5F61103AF /* Dots.framework */; 295 | productType = "com.apple.product-type.framework"; 296 | }; 297 | C93EE336A7218B8B0BF49E11196F5C9D /* Pods-Dots_Example */ = { 298 | isa = PBXNativeTarget; 299 | buildConfigurationList = 826F2145CB0D8F9A4B125138459F2029 /* Build configuration list for PBXNativeTarget "Pods-Dots_Example" */; 300 | buildPhases = ( 301 | EDDF6DDCEC0B65FAA3C52B24280AFD0D /* Sources */, 302 | 8C159BF4B1E6BFD4C2D0705B8F8CFCAF /* Frameworks */, 303 | BCA48392EEBEA86D8017CB6C66E0DD5B /* Headers */, 304 | ); 305 | buildRules = ( 306 | ); 307 | dependencies = ( 308 | E9FB9170F88FCB4690FFB6EE62916882 /* PBXTargetDependency */, 309 | ); 310 | name = "Pods-Dots_Example"; 311 | productName = "Pods-Dots_Example"; 312 | productReference = 2F33114B4E29DBC36A2555FF63DEFD06 /* Pods_Dots_Example.framework */; 313 | productType = "com.apple.product-type.framework"; 314 | }; 315 | /* End PBXNativeTarget section */ 316 | 317 | /* Begin PBXProject section */ 318 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 319 | isa = PBXProject; 320 | attributes = { 321 | LastSwiftUpdateCheck = 0830; 322 | LastUpgradeCheck = 0700; 323 | }; 324 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 325 | compatibilityVersion = "Xcode 3.2"; 326 | developmentRegion = English; 327 | hasScannedForEncodings = 0; 328 | knownRegions = ( 329 | en, 330 | ); 331 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 332 | productRefGroup = BB40509AA69D912308FE2D5100266269 /* Products */; 333 | projectDirPath = ""; 334 | projectRoot = ""; 335 | targets = ( 336 | B83DD70CCDCFF85E204ADD09A2250A82 /* Dots */, 337 | C93EE336A7218B8B0BF49E11196F5C9D /* Pods-Dots_Example */, 338 | 2A08FD17DA0E5EDDD31F7E10B24BD3B2 /* Pods-Dots_Tests */, 339 | ); 340 | }; 341 | /* End PBXProject section */ 342 | 343 | /* Begin PBXSourcesBuildPhase section */ 344 | 0FBDCF4DA36165EF12B8F092C1ADDBDB /* Sources */ = { 345 | isa = PBXSourcesBuildPhase; 346 | buildActionMask = 2147483647; 347 | files = ( 348 | 944EEACC6651843605C4DF3C7D343C5B /* Pods-Dots_Tests-dummy.m in Sources */, 349 | ); 350 | runOnlyForDeploymentPostprocessing = 0; 351 | }; 352 | 753E0CFF6E48607DC68C5006B6BEFE6C /* Sources */ = { 353 | isa = PBXSourcesBuildPhase; 354 | buildActionMask = 2147483647; 355 | files = ( 356 | 60BE893F491EA303E5A3051B2DB43CBB /* Dots-dummy.m in Sources */, 357 | 87C137C65327DD2D7A77DC71E802D41F /* DotsLoadingView.swift in Sources */, 358 | 4BFE2DA906B6200DC657D2A9FDCDC88C /* DotView.swift in Sources */, 359 | 91F78B580CF04FE58B6A76C771C3F7BD /* UIColor+hex.swift in Sources */, 360 | ); 361 | runOnlyForDeploymentPostprocessing = 0; 362 | }; 363 | EDDF6DDCEC0B65FAA3C52B24280AFD0D /* Sources */ = { 364 | isa = PBXSourcesBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | 09E49026E5C0E77A6E0F5582C7F91908 /* Pods-Dots_Example-dummy.m in Sources */, 368 | ); 369 | runOnlyForDeploymentPostprocessing = 0; 370 | }; 371 | /* End PBXSourcesBuildPhase section */ 372 | 373 | /* Begin PBXTargetDependency section */ 374 | E9FB9170F88FCB4690FFB6EE62916882 /* PBXTargetDependency */ = { 375 | isa = PBXTargetDependency; 376 | name = Dots; 377 | target = B83DD70CCDCFF85E204ADD09A2250A82 /* Dots */; 378 | targetProxy = A5B61BDC00355751770ED0ECE97EB850 /* PBXContainerItemProxy */; 379 | }; 380 | /* End PBXTargetDependency section */ 381 | 382 | /* Begin XCBuildConfiguration section */ 383 | 345CC476DF4A7516DBD2220CF5035FF3 /* Debug */ = { 384 | isa = XCBuildConfiguration; 385 | buildSettings = { 386 | ALWAYS_SEARCH_USER_PATHS = NO; 387 | CLANG_ANALYZER_NONNULL = YES; 388 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; 389 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 390 | CLANG_CXX_LIBRARY = "libc++"; 391 | CLANG_ENABLE_MODULES = YES; 392 | CLANG_ENABLE_OBJC_ARC = YES; 393 | CLANG_WARN_BOOL_CONVERSION = YES; 394 | CLANG_WARN_CONSTANT_CONVERSION = YES; 395 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 396 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 397 | CLANG_WARN_EMPTY_BODY = YES; 398 | CLANG_WARN_ENUM_CONVERSION = YES; 399 | CLANG_WARN_INFINITE_RECURSION = YES; 400 | CLANG_WARN_INT_CONVERSION = YES; 401 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 402 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 403 | CLANG_WARN_UNREACHABLE_CODE = YES; 404 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 405 | CODE_SIGNING_REQUIRED = NO; 406 | COPY_PHASE_STRIP = NO; 407 | ENABLE_TESTABILITY = YES; 408 | GCC_C_LANGUAGE_STANDARD = gnu99; 409 | GCC_DYNAMIC_NO_PIC = NO; 410 | GCC_OPTIMIZATION_LEVEL = 0; 411 | GCC_PREPROCESSOR_DEFINITIONS = ( 412 | "POD_CONFIGURATION_DEBUG=1", 413 | "DEBUG=1", 414 | "$(inherited)", 415 | ); 416 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 417 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 418 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 419 | GCC_WARN_UNDECLARED_SELECTOR = YES; 420 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 421 | GCC_WARN_UNUSED_FUNCTION = YES; 422 | GCC_WARN_UNUSED_VARIABLE = YES; 423 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 424 | ONLY_ACTIVE_ARCH = YES; 425 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 426 | STRIP_INSTALLED_PRODUCT = NO; 427 | SYMROOT = "${SRCROOT}/../build"; 428 | }; 429 | name = Debug; 430 | }; 431 | 51C3E8F2B605D3E176501FB3FA55D55C /* Debug */ = { 432 | isa = XCBuildConfiguration; 433 | baseConfigurationReference = 253FB0AED8014311C5A1F1D629A32C3C /* Pods-Dots_Tests.debug.xcconfig */; 434 | buildSettings = { 435 | CODE_SIGN_IDENTITY = ""; 436 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 437 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 438 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 439 | CURRENT_PROJECT_VERSION = 1; 440 | DEBUG_INFORMATION_FORMAT = dwarf; 441 | DEFINES_MODULE = YES; 442 | DYLIB_COMPATIBILITY_VERSION = 1; 443 | DYLIB_CURRENT_VERSION = 1; 444 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 445 | ENABLE_STRICT_OBJC_MSGSEND = YES; 446 | GCC_NO_COMMON_BLOCKS = YES; 447 | INFOPLIST_FILE = "Target Support Files/Pods-Dots_Tests/Info.plist"; 448 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 449 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 450 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 451 | MACH_O_TYPE = staticlib; 452 | MODULEMAP_FILE = "Target Support Files/Pods-Dots_Tests/Pods-Dots_Tests.modulemap"; 453 | MTL_ENABLE_DEBUG_INFO = YES; 454 | OTHER_LDFLAGS = ""; 455 | OTHER_LIBTOOLFLAGS = ""; 456 | PODS_ROOT = "$(SRCROOT)"; 457 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 458 | PRODUCT_NAME = Pods_Dots_Tests; 459 | SDKROOT = iphoneos; 460 | SKIP_INSTALL = YES; 461 | TARGETED_DEVICE_FAMILY = "1,2"; 462 | VERSIONING_SYSTEM = "apple-generic"; 463 | VERSION_INFO_PREFIX = ""; 464 | }; 465 | name = Debug; 466 | }; 467 | 58C02A2FA7B5BCCB7BDEE9400466B0F1 /* Debug */ = { 468 | isa = XCBuildConfiguration; 469 | baseConfigurationReference = 449F53AE0C989D28D7E6872F091A3EF0 /* Pods-Dots_Example.debug.xcconfig */; 470 | buildSettings = { 471 | CODE_SIGN_IDENTITY = ""; 472 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 473 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 474 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 475 | CURRENT_PROJECT_VERSION = 1; 476 | DEBUG_INFORMATION_FORMAT = dwarf; 477 | DEFINES_MODULE = YES; 478 | DYLIB_COMPATIBILITY_VERSION = 1; 479 | DYLIB_CURRENT_VERSION = 1; 480 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 481 | ENABLE_STRICT_OBJC_MSGSEND = YES; 482 | GCC_NO_COMMON_BLOCKS = YES; 483 | INFOPLIST_FILE = "Target Support Files/Pods-Dots_Example/Info.plist"; 484 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 485 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 486 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 487 | MACH_O_TYPE = staticlib; 488 | MODULEMAP_FILE = "Target Support Files/Pods-Dots_Example/Pods-Dots_Example.modulemap"; 489 | MTL_ENABLE_DEBUG_INFO = YES; 490 | OTHER_LDFLAGS = ""; 491 | OTHER_LIBTOOLFLAGS = ""; 492 | PODS_ROOT = "$(SRCROOT)"; 493 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 494 | PRODUCT_NAME = Pods_Dots_Example; 495 | SDKROOT = iphoneos; 496 | SKIP_INSTALL = YES; 497 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 498 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 499 | SWIFT_VERSION = 3.0; 500 | TARGETED_DEVICE_FAMILY = "1,2"; 501 | VERSIONING_SYSTEM = "apple-generic"; 502 | VERSION_INFO_PREFIX = ""; 503 | }; 504 | name = Debug; 505 | }; 506 | 717E77604BFBB04BEAF56608A1CB2EDE /* Release */ = { 507 | isa = XCBuildConfiguration; 508 | buildSettings = { 509 | ALWAYS_SEARCH_USER_PATHS = NO; 510 | CLANG_ANALYZER_NONNULL = YES; 511 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; 512 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 513 | CLANG_CXX_LIBRARY = "libc++"; 514 | CLANG_ENABLE_MODULES = YES; 515 | CLANG_ENABLE_OBJC_ARC = YES; 516 | CLANG_WARN_BOOL_CONVERSION = YES; 517 | CLANG_WARN_CONSTANT_CONVERSION = YES; 518 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 519 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 520 | CLANG_WARN_EMPTY_BODY = YES; 521 | CLANG_WARN_ENUM_CONVERSION = YES; 522 | CLANG_WARN_INFINITE_RECURSION = YES; 523 | CLANG_WARN_INT_CONVERSION = YES; 524 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 525 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 526 | CLANG_WARN_UNREACHABLE_CODE = YES; 527 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 528 | CODE_SIGNING_REQUIRED = NO; 529 | COPY_PHASE_STRIP = YES; 530 | ENABLE_NS_ASSERTIONS = NO; 531 | GCC_C_LANGUAGE_STANDARD = gnu99; 532 | GCC_PREPROCESSOR_DEFINITIONS = ( 533 | "POD_CONFIGURATION_RELEASE=1", 534 | "$(inherited)", 535 | ); 536 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 537 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 538 | GCC_WARN_UNDECLARED_SELECTOR = YES; 539 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 540 | GCC_WARN_UNUSED_FUNCTION = YES; 541 | GCC_WARN_UNUSED_VARIABLE = YES; 542 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 543 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 544 | STRIP_INSTALLED_PRODUCT = NO; 545 | SYMROOT = "${SRCROOT}/../build"; 546 | VALIDATE_PRODUCT = YES; 547 | }; 548 | name = Release; 549 | }; 550 | 9C87AEA547BCC9192AFE794A88ABB04D /* Release */ = { 551 | isa = XCBuildConfiguration; 552 | baseConfigurationReference = 3F82F5470F2AE8F282738B087CFC30C0 /* Pods-Dots_Tests.release.xcconfig */; 553 | buildSettings = { 554 | CODE_SIGN_IDENTITY = ""; 555 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 556 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 557 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 558 | CURRENT_PROJECT_VERSION = 1; 559 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 560 | DEFINES_MODULE = YES; 561 | DYLIB_COMPATIBILITY_VERSION = 1; 562 | DYLIB_CURRENT_VERSION = 1; 563 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 564 | ENABLE_STRICT_OBJC_MSGSEND = YES; 565 | GCC_NO_COMMON_BLOCKS = YES; 566 | INFOPLIST_FILE = "Target Support Files/Pods-Dots_Tests/Info.plist"; 567 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 568 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 569 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 570 | MACH_O_TYPE = staticlib; 571 | MODULEMAP_FILE = "Target Support Files/Pods-Dots_Tests/Pods-Dots_Tests.modulemap"; 572 | MTL_ENABLE_DEBUG_INFO = NO; 573 | OTHER_LDFLAGS = ""; 574 | OTHER_LIBTOOLFLAGS = ""; 575 | PODS_ROOT = "$(SRCROOT)"; 576 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 577 | PRODUCT_NAME = Pods_Dots_Tests; 578 | SDKROOT = iphoneos; 579 | SKIP_INSTALL = YES; 580 | TARGETED_DEVICE_FAMILY = "1,2"; 581 | VERSIONING_SYSTEM = "apple-generic"; 582 | VERSION_INFO_PREFIX = ""; 583 | }; 584 | name = Release; 585 | }; 586 | AF65D3B3AE715294EE44AA8FCE7975DE /* Release */ = { 587 | isa = XCBuildConfiguration; 588 | baseConfigurationReference = 3F57EE4F9BA5363F6CFC699BFE4E483D /* Dots.xcconfig */; 589 | buildSettings = { 590 | CODE_SIGN_IDENTITY = ""; 591 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 592 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 593 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 594 | CURRENT_PROJECT_VERSION = 1; 595 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 596 | DEFINES_MODULE = YES; 597 | DYLIB_COMPATIBILITY_VERSION = 1; 598 | DYLIB_CURRENT_VERSION = 1; 599 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 600 | ENABLE_STRICT_OBJC_MSGSEND = YES; 601 | GCC_NO_COMMON_BLOCKS = YES; 602 | GCC_PREFIX_HEADER = "Target Support Files/Dots/Dots-prefix.pch"; 603 | INFOPLIST_FILE = "Target Support Files/Dots/Info.plist"; 604 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 605 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 606 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 607 | MODULEMAP_FILE = "Target Support Files/Dots/Dots.modulemap"; 608 | MTL_ENABLE_DEBUG_INFO = NO; 609 | PRODUCT_NAME = Dots; 610 | SDKROOT = iphoneos; 611 | SKIP_INSTALL = YES; 612 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 613 | SWIFT_VERSION = 3.0; 614 | TARGETED_DEVICE_FAMILY = "1,2"; 615 | VERSIONING_SYSTEM = "apple-generic"; 616 | VERSION_INFO_PREFIX = ""; 617 | }; 618 | name = Release; 619 | }; 620 | B4E6F2C72B7E8326E17F4128D5765995 /* Debug */ = { 621 | isa = XCBuildConfiguration; 622 | baseConfigurationReference = 3F57EE4F9BA5363F6CFC699BFE4E483D /* Dots.xcconfig */; 623 | buildSettings = { 624 | CODE_SIGN_IDENTITY = ""; 625 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 626 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 627 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 628 | CURRENT_PROJECT_VERSION = 1; 629 | DEBUG_INFORMATION_FORMAT = dwarf; 630 | DEFINES_MODULE = YES; 631 | DYLIB_COMPATIBILITY_VERSION = 1; 632 | DYLIB_CURRENT_VERSION = 1; 633 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 634 | ENABLE_STRICT_OBJC_MSGSEND = YES; 635 | GCC_NO_COMMON_BLOCKS = YES; 636 | GCC_PREFIX_HEADER = "Target Support Files/Dots/Dots-prefix.pch"; 637 | INFOPLIST_FILE = "Target Support Files/Dots/Info.plist"; 638 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 639 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 640 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 641 | MODULEMAP_FILE = "Target Support Files/Dots/Dots.modulemap"; 642 | MTL_ENABLE_DEBUG_INFO = YES; 643 | PRODUCT_NAME = Dots; 644 | SDKROOT = iphoneos; 645 | SKIP_INSTALL = YES; 646 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 647 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 648 | SWIFT_VERSION = 3.0; 649 | TARGETED_DEVICE_FAMILY = "1,2"; 650 | VERSIONING_SYSTEM = "apple-generic"; 651 | VERSION_INFO_PREFIX = ""; 652 | }; 653 | name = Debug; 654 | }; 655 | E7D5EC2BCB99C48314013D43FB34CAA5 /* Release */ = { 656 | isa = XCBuildConfiguration; 657 | baseConfigurationReference = 0B35E9399B4C6D684F3CA95BF385D88C /* Pods-Dots_Example.release.xcconfig */; 658 | buildSettings = { 659 | CODE_SIGN_IDENTITY = ""; 660 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 661 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 662 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 663 | CURRENT_PROJECT_VERSION = 1; 664 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 665 | DEFINES_MODULE = YES; 666 | DYLIB_COMPATIBILITY_VERSION = 1; 667 | DYLIB_CURRENT_VERSION = 1; 668 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 669 | ENABLE_STRICT_OBJC_MSGSEND = YES; 670 | GCC_NO_COMMON_BLOCKS = YES; 671 | INFOPLIST_FILE = "Target Support Files/Pods-Dots_Example/Info.plist"; 672 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 673 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 674 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 675 | MACH_O_TYPE = staticlib; 676 | MODULEMAP_FILE = "Target Support Files/Pods-Dots_Example/Pods-Dots_Example.modulemap"; 677 | MTL_ENABLE_DEBUG_INFO = NO; 678 | OTHER_LDFLAGS = ""; 679 | OTHER_LIBTOOLFLAGS = ""; 680 | PODS_ROOT = "$(SRCROOT)"; 681 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 682 | PRODUCT_NAME = Pods_Dots_Example; 683 | SDKROOT = iphoneos; 684 | SKIP_INSTALL = YES; 685 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 686 | SWIFT_VERSION = 3.0; 687 | TARGETED_DEVICE_FAMILY = "1,2"; 688 | VERSIONING_SYSTEM = "apple-generic"; 689 | VERSION_INFO_PREFIX = ""; 690 | }; 691 | name = Release; 692 | }; 693 | /* End XCBuildConfiguration section */ 694 | 695 | /* Begin XCConfigurationList section */ 696 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 697 | isa = XCConfigurationList; 698 | buildConfigurations = ( 699 | 345CC476DF4A7516DBD2220CF5035FF3 /* Debug */, 700 | 717E77604BFBB04BEAF56608A1CB2EDE /* Release */, 701 | ); 702 | defaultConfigurationIsVisible = 0; 703 | defaultConfigurationName = Release; 704 | }; 705 | 826F2145CB0D8F9A4B125138459F2029 /* Build configuration list for PBXNativeTarget "Pods-Dots_Example" */ = { 706 | isa = XCConfigurationList; 707 | buildConfigurations = ( 708 | 58C02A2FA7B5BCCB7BDEE9400466B0F1 /* Debug */, 709 | E7D5EC2BCB99C48314013D43FB34CAA5 /* Release */, 710 | ); 711 | defaultConfigurationIsVisible = 0; 712 | defaultConfigurationName = Release; 713 | }; 714 | 840DE407E082CCE2E671726D8DD9DBFE /* Build configuration list for PBXNativeTarget "Pods-Dots_Tests" */ = { 715 | isa = XCConfigurationList; 716 | buildConfigurations = ( 717 | 51C3E8F2B605D3E176501FB3FA55D55C /* Debug */, 718 | 9C87AEA547BCC9192AFE794A88ABB04D /* Release */, 719 | ); 720 | defaultConfigurationIsVisible = 0; 721 | defaultConfigurationName = Release; 722 | }; 723 | 9F8C0C33F99D0BF7A8EB06AAF7052446 /* Build configuration list for PBXNativeTarget "Dots" */ = { 724 | isa = XCConfigurationList; 725 | buildConfigurations = ( 726 | B4E6F2C72B7E8326E17F4128D5765995 /* Debug */, 727 | AF65D3B3AE715294EE44AA8FCE7975DE /* Release */, 728 | ); 729 | defaultConfigurationIsVisible = 0; 730 | defaultConfigurationName = Release; 731 | }; 732 | /* End XCConfigurationList section */ 733 | }; 734 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 735 | } 736 | --------------------------------------------------------------------------------