├── .swift-version ├── Example ├── Podfile ├── Pods │ ├── Target Support Files │ │ ├── LLSpinner │ │ │ ├── LLSpinner-prefix.pch │ │ │ ├── LLSpinner.modulemap │ │ │ ├── LLSpinner-dummy.m │ │ │ ├── LLSpinner-umbrella.h │ │ │ ├── LLSpinner.xcconfig │ │ │ └── Info.plist │ │ └── Pods-Example │ │ │ ├── Pods-Example.modulemap │ │ │ ├── Pods-Example-dummy.m │ │ │ ├── Pods-Example-umbrella.h │ │ │ ├── Pods-Example.debug.xcconfig │ │ │ ├── Pods-Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-Example-acknowledgements.markdown │ │ │ ├── Pods-Example-acknowledgements.plist │ │ │ ├── Pods-Example-frameworks.sh │ │ │ └── Pods-Example-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── LLSpinner.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Example.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── project.pbxproj ├── Example.xcworkspace │ └── contents.xcworkspacedata ├── Podfile.lock └── Example │ ├── ViewController.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ └── AppDelegate.swift ├── LLSpinner.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── project.pbxproj ├── LLSpinnerTests ├── LLSpinnerTests.swift └── Info.plist ├── LLSpinner ├── LLSpinner.h ├── Info.plist └── LLSpinner.swift ├── LLSpinner.podspec ├── LICENCE ├── .gitignore └── README.md /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | target 'Example' do 3 | use_frameworks! 4 | pod 'LLSpinner', :path => '../' 5 | end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LLSpinner/LLSpinner-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LLSpinner/LLSpinner.modulemap: -------------------------------------------------------------------------------- 1 | framework module LLSpinner { 2 | umbrella header "LLSpinner-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LLSpinner/LLSpinner-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_LLSpinner : NSObject 3 | @end 4 | @implementation PodsDummy_LLSpinner 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Example { 2 | umbrella header "Pods-Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /LLSpinner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LLSpinner/LLSpinner-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "LLSpinner.h" 4 | 5 | FOUNDATION_EXPORT double LLSpinnerVersionNumber; 6 | FOUNDATION_EXPORT const unsigned char LLSpinnerVersionString[]; 7 | 8 | -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /LLSpinner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - LLSpinner (0.0.1) 3 | 4 | DEPENDENCIES: 5 | - LLSpinner (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | LLSpinner: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | LLSpinner: 0ed607d59b3a447ddd157c29ef684de7a5a285ad 13 | 14 | PODFILE CHECKSUM: af84e5aa50d48c8ff2f29cbc472a0c1d8844cf5b 15 | 16 | COCOAPODS: 1.1.0.rc.2 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - LLSpinner (0.0.1) 3 | 4 | DEPENDENCIES: 5 | - LLSpinner (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | LLSpinner: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | LLSpinner: 0ed607d59b3a447ddd157c29ef684de7a5a285ad 13 | 14 | PODFILE CHECKSUM: af84e5aa50d48c8ff2f29cbc472a0c1d8844cf5b 15 | 16 | COCOAPODS: 1.1.0.rc.2 17 | -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // Example 4 | // 5 | // Created by Aleph Retamal on 9/22/16. 6 | // Copyright © 2016 lalafon. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import LLSpinner 11 | 12 | class ViewController: UIViewController { 13 | 14 | @IBAction func buttonTouched() { 15 | LLSpinner.spin(style: .whiteLarge) { 16 | LLSpinner.stop() 17 | } 18 | } 19 | 20 | } 21 | 22 | -------------------------------------------------------------------------------- /LLSpinnerTests/LLSpinnerTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LLSpinnerTests.swift 3 | // LLSpinnerTests 4 | // 5 | // Created by Aleph Retamal on 9/22/16. 6 | // Copyright © 2016 lalafon. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import LLSpinner 11 | 12 | class LLSpinnerTests: XCTestCase { 13 | override func setUp() { 14 | super.setUp() 15 | } 16 | 17 | override func tearDown() { 18 | super.tearDown() 19 | } 20 | 21 | func testExample() { 22 | XCTAssert(true) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LLSpinner/LLSpinner.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/LLSpinner 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 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /LLSpinner/LLSpinner.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLSpinner.h 3 | // LLSpinner 4 | // 5 | // Created by Aleph Retamal on 9/22/16. 6 | // Copyright © 2016 lalafon. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for LLSpinner. 12 | FOUNDATION_EXPORT double LLSpinnerVersionNumber; 13 | 14 | //! Project version string for LLSpinner. 15 | FOUNDATION_EXPORT const unsigned char LLSpinnerVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LLSpinner.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LLSpinner", 3 | "version": "0.0.1", 4 | "summary": "Simple and easy to use full screen activity indicator written in Swift", 5 | "homepage": "https://github.com/alaphao/LLSpinner", 6 | "license": { 7 | "type": "MIT", 8 | "file": "LICENCE" 9 | }, 10 | "authors": "Aleph Retamal", 11 | "platforms": { 12 | "ios": "8.0" 13 | }, 14 | "source": { 15 | "git": "https://github.com/alaphao/LLSpinner.git", 16 | "tag": "0.0.1" 17 | }, 18 | "source_files": [ 19 | "LLSpinner", 20 | "LLSpinner/*.{swift,h}" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LLSpinner" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/LLSpinner/LLSpinner.framework/Headers" 7 | OTHER_LDFLAGS = $(inherited) -framework "LLSpinner" 8 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 9 | PODS_BUILD_DIR = $BUILD_DIR 10 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LLSpinner" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/LLSpinner/LLSpinner.framework/Headers" 7 | OTHER_LDFLAGS = $(inherited) -framework "LLSpinner" 8 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 9 | PODS_BUILD_DIR = $BUILD_DIR 10 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /LLSpinnerTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /LLSpinner/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 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /LLSpinner.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint LLSpinner.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = "LLSpinner" 11 | s.version = "1.0.0" 12 | s.summary = "Simple and easy to use full screen activity indicator written in Swift" 13 | s.homepage = "https://github.com/alaphao/LLSpinner" 14 | s.license = { :type => "MIT", :file => "LICENCE" } 15 | s.author = "Aleph Retamal" 16 | s.platform = :ios 17 | s.ios.deployment_target = '8.0' 18 | s.source = { :git => "https://github.com/alaphao/LLSpinner.git", :tag => "#{s.version}" } 19 | s.source_files = "LLSpinner", "LLSpinner/*.{swift,h}" 20 | end 21 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LLSpinner/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.0.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | } 43 | ], 44 | "info" : { 45 | "version" : 1, 46 | "author" : "xcode" 47 | } 48 | } -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 LLSpinner by Aleph Retamal 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /Example/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 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## LLSpinner 5 | 6 | Copyright (c) 2016 LLSpinner by Aleph Retamal 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 11 | 12 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 13 | 14 | Generated by CocoaPods - https://cocoapods.org 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/swift 3 | 4 | .DS_Store 5 | 6 | ### Swift ### 7 | # Xcode 8 | # 9 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 10 | 11 | ## Build generated 12 | build/ 13 | DerivedData/ 14 | 15 | ## Various settings 16 | *.pbxuser 17 | !default.pbxuser 18 | *.mode1v3 19 | !default.mode1v3 20 | *.mode2v3 21 | !default.mode2v3 22 | *.perspectivev3 23 | !default.perspectivev3 24 | xcuserdata/ 25 | 26 | ## Other 27 | *.moved-aside 28 | *.xcuserstate 29 | 30 | ## Obj-C/Swift specific 31 | *.hmap 32 | *.ipa 33 | *.dSYM.zip 34 | *.dSYM 35 | 36 | ## Playgrounds 37 | timeline.xctimeline 38 | playground.xcworkspace 39 | 40 | # Swift Package Manager 41 | # 42 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 43 | # Packages/ 44 | .build/ 45 | 46 | # CocoaPods 47 | # 48 | # We recommend against adding the Pods directory to your .gitignore. However 49 | # you should judge for yourself, the pros and cons are mentioned at: 50 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 51 | # 52 | # Pods/ 53 | 54 | # Carthage 55 | # 56 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 57 | # Carthage/Checkouts 58 | 59 | Carthage/Build 60 | 61 | # fastlane 62 | # 63 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 64 | # screenshots whenever they are needed. 65 | # For more information about the recommended setup visit: 66 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 67 | 68 | fastlane/report.xml 69 | fastlane/Preview.html 70 | fastlane/screenshots 71 | fastlane/test_output 72 | -------------------------------------------------------------------------------- /LLSpinner/LLSpinner.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LLSpinner.swift 3 | // LLSpinner 4 | // 5 | // Created by Aleph Retamal on 9/22/16. 6 | // Copyright © 2016 lalafon. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | open class LLSpinner { 12 | internal static var spinnerView: UIActivityIndicatorView? 13 | 14 | public static var style: UIActivityIndicatorView.Style = .white 15 | public static var backgroundColor: UIColor = UIColor(white: 0, alpha: 0.6) 16 | 17 | internal static var touchHandler: (() -> Void)? 18 | 19 | public static func spin(style: UIActivityIndicatorView.Style = style, backgroundColor: UIColor = backgroundColor, touchHandler: (() -> Void)? = nil) { 20 | if spinnerView == nil, 21 | let window = UIApplication.shared.keyWindow { 22 | let frame = UIScreen.main.bounds 23 | spinnerView = UIActivityIndicatorView(frame: frame) 24 | spinnerView!.backgroundColor = backgroundColor 25 | spinnerView!.style = style 26 | window.addSubview(spinnerView!) 27 | spinnerView!.startAnimating() 28 | } 29 | 30 | if touchHandler != nil { 31 | self.touchHandler = touchHandler 32 | let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(runTouchHandler)) 33 | spinnerView!.addGestureRecognizer(tapGestureRecognizer) 34 | } 35 | } 36 | 37 | @objc internal static func runTouchHandler() { 38 | if touchHandler != nil { 39 | touchHandler!() 40 | } 41 | } 42 | 43 | public static func stop() { 44 | if let _ = spinnerView { 45 | spinnerView!.stopAnimating() 46 | spinnerView!.removeFromSuperview() 47 | spinnerView = nil 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | LLSpinner 2 | =========== 3 | 4 | [![Swift 4.2](https://img.shields.io/badge/Swift-4.2-orange.svg?style=flat)](https://developer.apple.com/swift/) 5 | [![Platform](https://img.shields.io/cocoapods/p/LLSpinner.svg?style=flat)](https://cocoapods.org/pods/LLSpinner) 6 | [![Version](https://img.shields.io/cocoapods/v/LLSpinner.svg?style=flat)](https://cocoapods.org/pods/LLSpinner) 7 | [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) 8 | 9 | An easy way to handle full screen activity indicator. 10 | 11 | ![llspinner](https://cloud.githubusercontent.com/assets/7674479/18743621/3a5047f4-80fd-11e6-9701-e389caacab05.gif) 12 | 13 | Easy to use 14 | ---- 15 | 16 | ### Get Started 17 | 18 | ```swift 19 | // Show spinner 20 | LLSpinner.spin() 21 | 22 | // Hide spinner 23 | LLSpinner.stop() 24 | ``` 25 | 26 | ### Controls 27 | 28 | #### Custom Appearance 29 | 30 | ```swift 31 | // You can modify the background color and the activity indicator style 32 | // To set the default background color 33 | LLSpinner.backgroundColor = UIColor(white: 0, alpha: 0.6) 34 | 35 | // and the default activity indicator style 36 | LLSpinner.style = .whiteLarge 37 | 38 | // Or 39 | LLSpinner.spin(style: .whiteLarge, backgroundColor: UIColor(white: 0, alpha: 0.6)) 40 | ``` 41 | 42 | #### Tap handler 43 | 44 | ```swift 45 | // Add a handler that will trigger when the spinner is tapped 46 | LLSpinner.spin() { 47 | LLSpinner.stop() 48 | } 49 | ``` 50 | 51 | Installation 52 | --- 53 | ### Cocoapods 54 | LLSpinner is available through [CocoaPods](http://cocoapods.org). 55 | 56 | To install add the following line to your Podfile: 57 | 58 | pod 'LLSpinner' 59 | 60 | ### Carthage 61 | Add the following line to your Cartfile: 62 | 63 | github "alaphao/LLSpinner" 64 | 65 | ### Manually 66 | Download and drop ```LLSpinner.swift``` in your project. 67 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2016 LLSpinner by Aleph Retamal 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 20 | 21 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 22 | 23 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 | 25 | License 26 | MIT 27 | Title 28 | LLSpinner 29 | Type 30 | PSGroupSpecifier 31 | 32 | 33 | FooterText 34 | Generated by CocoaPods - https://cocoapods.org 35 | Title 36 | 37 | Type 38 | PSGroupSpecifier 39 | 40 | 41 | StringsTable 42 | Acknowledgements 43 | Title 44 | Acknowledgements 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Example 4 | // 5 | // Created by Aleph Retamal on 9/22/16. 6 | // Copyright © 2016 lalafon. 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 invalidate graphics rendering callbacks. 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 active state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Example/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 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "$BUILT_PRODUCTS_DIR/LLSpinner/LLSpinner.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "$BUILT_PRODUCTS_DIR/LLSpinner/LLSpinner.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | realpath() { 27 | DIRECTORY="$(cd "${1%/*}" && pwd)" 28 | FILENAME="${1##*/}" 29 | echo "$DIRECTORY/$FILENAME" 30 | } 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=$(realpath "$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 != "`realpath $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/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 63261AA34ACBBAED00CFA446 /* Pods_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7BE2DF1AE3E438F364DF44F7 /* Pods_Example.framework */; }; 11 | 867742F71D93D11D00680C55 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 867742F61D93D11D00680C55 /* AppDelegate.swift */; }; 12 | 867742F91D93D11D00680C55 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 867742F81D93D11D00680C55 /* ViewController.swift */; }; 13 | 867742FC1D93D11D00680C55 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 867742FA1D93D11D00680C55 /* Main.storyboard */; }; 14 | 867742FE1D93D11D00680C55 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 867742FD1D93D11D00680C55 /* Assets.xcassets */; }; 15 | 867743011D93D11D00680C55 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 867742FF1D93D11D00680C55 /* LaunchScreen.storyboard */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXCopyFilesBuildPhase section */ 19 | 86087D601D93D8D800E6AE40 /* Embed Frameworks */ = { 20 | isa = PBXCopyFilesBuildPhase; 21 | buildActionMask = 2147483647; 22 | dstPath = ""; 23 | dstSubfolderSpec = 10; 24 | files = ( 25 | ); 26 | name = "Embed Frameworks"; 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXCopyFilesBuildPhase section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 7BE2DF1AE3E438F364DF44F7 /* Pods_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 33 | 867742F31D93D11D00680C55 /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 34 | 867742F61D93D11D00680C55 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 35 | 867742F81D93D11D00680C55 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 36 | 867742FB1D93D11D00680C55 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 37 | 867742FD1D93D11D00680C55 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 38 | 867743001D93D11D00680C55 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 39 | 867743021D93D11D00680C55 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 40 | 97EA5B8A511A83628202F890 /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = ""; }; 41 | 9BF84E1D77080F80A048DF04 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = ""; }; 42 | /* End PBXFileReference section */ 43 | 44 | /* Begin PBXFrameworksBuildPhase section */ 45 | 867742F01D93D11D00680C55 /* Frameworks */ = { 46 | isa = PBXFrameworksBuildPhase; 47 | buildActionMask = 2147483647; 48 | files = ( 49 | 63261AA34ACBBAED00CFA446 /* Pods_Example.framework in Frameworks */, 50 | ); 51 | runOnlyForDeploymentPostprocessing = 0; 52 | }; 53 | /* End PBXFrameworksBuildPhase section */ 54 | 55 | /* Begin PBXGroup section */ 56 | 31D93968738B616A5E35D852 /* Pods */ = { 57 | isa = PBXGroup; 58 | children = ( 59 | 97EA5B8A511A83628202F890 /* Pods-Example.debug.xcconfig */, 60 | 9BF84E1D77080F80A048DF04 /* Pods-Example.release.xcconfig */, 61 | ); 62 | name = Pods; 63 | sourceTree = ""; 64 | }; 65 | 867742EA1D93D11D00680C55 = { 66 | isa = PBXGroup; 67 | children = ( 68 | 867742F51D93D11D00680C55 /* Example */, 69 | 867742F41D93D11D00680C55 /* Products */, 70 | 31D93968738B616A5E35D852 /* Pods */, 71 | C4CDB66B5FB0B1953F619C97 /* Frameworks */, 72 | ); 73 | sourceTree = ""; 74 | }; 75 | 867742F41D93D11D00680C55 /* Products */ = { 76 | isa = PBXGroup; 77 | children = ( 78 | 867742F31D93D11D00680C55 /* Example.app */, 79 | ); 80 | name = Products; 81 | sourceTree = ""; 82 | }; 83 | 867742F51D93D11D00680C55 /* Example */ = { 84 | isa = PBXGroup; 85 | children = ( 86 | 867742F61D93D11D00680C55 /* AppDelegate.swift */, 87 | 867742F81D93D11D00680C55 /* ViewController.swift */, 88 | 867742FA1D93D11D00680C55 /* Main.storyboard */, 89 | 867742FD1D93D11D00680C55 /* Assets.xcassets */, 90 | 867742FF1D93D11D00680C55 /* LaunchScreen.storyboard */, 91 | 867743021D93D11D00680C55 /* Info.plist */, 92 | ); 93 | path = Example; 94 | sourceTree = ""; 95 | }; 96 | C4CDB66B5FB0B1953F619C97 /* Frameworks */ = { 97 | isa = PBXGroup; 98 | children = ( 99 | 7BE2DF1AE3E438F364DF44F7 /* Pods_Example.framework */, 100 | ); 101 | name = Frameworks; 102 | sourceTree = ""; 103 | }; 104 | /* End PBXGroup section */ 105 | 106 | /* Begin PBXNativeTarget section */ 107 | 867742F21D93D11D00680C55 /* Example */ = { 108 | isa = PBXNativeTarget; 109 | buildConfigurationList = 867743051D93D11D00680C55 /* Build configuration list for PBXNativeTarget "Example" */; 110 | buildPhases = ( 111 | 4F0E2278E2050EA5D4CAF9C4 /* [CP] Check Pods Manifest.lock */, 112 | 867742EF1D93D11D00680C55 /* Sources */, 113 | 867742F01D93D11D00680C55 /* Frameworks */, 114 | 867742F11D93D11D00680C55 /* Resources */, 115 | 86087D601D93D8D800E6AE40 /* Embed Frameworks */, 116 | C6DE9F29A347CE22D12AB590 /* [CP] Embed Pods Frameworks */, 117 | 1F7F9B90E07F593C861A028E /* [CP] Copy Pods Resources */, 118 | ); 119 | buildRules = ( 120 | ); 121 | dependencies = ( 122 | ); 123 | name = Example; 124 | productName = Example; 125 | productReference = 867742F31D93D11D00680C55 /* Example.app */; 126 | productType = "com.apple.product-type.application"; 127 | }; 128 | /* End PBXNativeTarget section */ 129 | 130 | /* Begin PBXProject section */ 131 | 867742EB1D93D11D00680C55 /* Project object */ = { 132 | isa = PBXProject; 133 | attributes = { 134 | LastSwiftUpdateCheck = 0800; 135 | LastUpgradeCheck = 0800; 136 | ORGANIZATIONNAME = lalafon; 137 | TargetAttributes = { 138 | 867742F21D93D11D00680C55 = { 139 | CreatedOnToolsVersion = 8.0; 140 | DevelopmentTeam = RWJVRQ865N; 141 | ProvisioningStyle = Automatic; 142 | }; 143 | }; 144 | }; 145 | buildConfigurationList = 867742EE1D93D11D00680C55 /* Build configuration list for PBXProject "Example" */; 146 | compatibilityVersion = "Xcode 3.2"; 147 | developmentRegion = English; 148 | hasScannedForEncodings = 0; 149 | knownRegions = ( 150 | en, 151 | Base, 152 | ); 153 | mainGroup = 867742EA1D93D11D00680C55; 154 | productRefGroup = 867742F41D93D11D00680C55 /* Products */; 155 | projectDirPath = ""; 156 | projectRoot = ""; 157 | targets = ( 158 | 867742F21D93D11D00680C55 /* Example */, 159 | ); 160 | }; 161 | /* End PBXProject section */ 162 | 163 | /* Begin PBXResourcesBuildPhase section */ 164 | 867742F11D93D11D00680C55 /* Resources */ = { 165 | isa = PBXResourcesBuildPhase; 166 | buildActionMask = 2147483647; 167 | files = ( 168 | 867743011D93D11D00680C55 /* LaunchScreen.storyboard in Resources */, 169 | 867742FE1D93D11D00680C55 /* Assets.xcassets in Resources */, 170 | 867742FC1D93D11D00680C55 /* Main.storyboard in Resources */, 171 | ); 172 | runOnlyForDeploymentPostprocessing = 0; 173 | }; 174 | /* End PBXResourcesBuildPhase section */ 175 | 176 | /* Begin PBXShellScriptBuildPhase section */ 177 | 1F7F9B90E07F593C861A028E /* [CP] Copy Pods Resources */ = { 178 | isa = PBXShellScriptBuildPhase; 179 | buildActionMask = 2147483647; 180 | files = ( 181 | ); 182 | inputPaths = ( 183 | ); 184 | name = "[CP] Copy Pods Resources"; 185 | outputPaths = ( 186 | ); 187 | runOnlyForDeploymentPostprocessing = 0; 188 | shellPath = /bin/sh; 189 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh\"\n"; 190 | showEnvVarsInLog = 0; 191 | }; 192 | 4F0E2278E2050EA5D4CAF9C4 /* [CP] Check Pods Manifest.lock */ = { 193 | isa = PBXShellScriptBuildPhase; 194 | buildActionMask = 2147483647; 195 | files = ( 196 | ); 197 | inputPaths = ( 198 | ); 199 | name = "[CP] Check Pods Manifest.lock"; 200 | outputPaths = ( 201 | ); 202 | runOnlyForDeploymentPostprocessing = 0; 203 | shellPath = /bin/sh; 204 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; 205 | showEnvVarsInLog = 0; 206 | }; 207 | C6DE9F29A347CE22D12AB590 /* [CP] Embed Pods Frameworks */ = { 208 | isa = PBXShellScriptBuildPhase; 209 | buildActionMask = 2147483647; 210 | files = ( 211 | ); 212 | inputPaths = ( 213 | ); 214 | name = "[CP] Embed Pods Frameworks"; 215 | outputPaths = ( 216 | ); 217 | runOnlyForDeploymentPostprocessing = 0; 218 | shellPath = /bin/sh; 219 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh\"\n"; 220 | showEnvVarsInLog = 0; 221 | }; 222 | /* End PBXShellScriptBuildPhase section */ 223 | 224 | /* Begin PBXSourcesBuildPhase section */ 225 | 867742EF1D93D11D00680C55 /* Sources */ = { 226 | isa = PBXSourcesBuildPhase; 227 | buildActionMask = 2147483647; 228 | files = ( 229 | 867742F91D93D11D00680C55 /* ViewController.swift in Sources */, 230 | 867742F71D93D11D00680C55 /* AppDelegate.swift in Sources */, 231 | ); 232 | runOnlyForDeploymentPostprocessing = 0; 233 | }; 234 | /* End PBXSourcesBuildPhase section */ 235 | 236 | /* Begin PBXVariantGroup section */ 237 | 867742FA1D93D11D00680C55 /* Main.storyboard */ = { 238 | isa = PBXVariantGroup; 239 | children = ( 240 | 867742FB1D93D11D00680C55 /* Base */, 241 | ); 242 | name = Main.storyboard; 243 | sourceTree = ""; 244 | }; 245 | 867742FF1D93D11D00680C55 /* LaunchScreen.storyboard */ = { 246 | isa = PBXVariantGroup; 247 | children = ( 248 | 867743001D93D11D00680C55 /* Base */, 249 | ); 250 | name = LaunchScreen.storyboard; 251 | sourceTree = ""; 252 | }; 253 | /* End PBXVariantGroup section */ 254 | 255 | /* Begin XCBuildConfiguration section */ 256 | 867743031D93D11D00680C55 /* Debug */ = { 257 | isa = XCBuildConfiguration; 258 | buildSettings = { 259 | ALWAYS_SEARCH_USER_PATHS = NO; 260 | CLANG_ANALYZER_NONNULL = YES; 261 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 262 | CLANG_CXX_LIBRARY = "libc++"; 263 | CLANG_ENABLE_MODULES = YES; 264 | CLANG_ENABLE_OBJC_ARC = YES; 265 | CLANG_WARN_BOOL_CONVERSION = YES; 266 | CLANG_WARN_CONSTANT_CONVERSION = YES; 267 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 268 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 269 | CLANG_WARN_EMPTY_BODY = YES; 270 | CLANG_WARN_ENUM_CONVERSION = YES; 271 | CLANG_WARN_INFINITE_RECURSION = YES; 272 | CLANG_WARN_INT_CONVERSION = YES; 273 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 274 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 275 | CLANG_WARN_SUSPICIOUS_MOVES = YES; 276 | CLANG_WARN_UNREACHABLE_CODE = YES; 277 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 278 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 279 | COPY_PHASE_STRIP = NO; 280 | DEBUG_INFORMATION_FORMAT = dwarf; 281 | ENABLE_STRICT_OBJC_MSGSEND = YES; 282 | ENABLE_TESTABILITY = YES; 283 | GCC_C_LANGUAGE_STANDARD = gnu99; 284 | GCC_DYNAMIC_NO_PIC = NO; 285 | GCC_NO_COMMON_BLOCKS = YES; 286 | GCC_OPTIMIZATION_LEVEL = 0; 287 | GCC_PREPROCESSOR_DEFINITIONS = ( 288 | "DEBUG=1", 289 | "$(inherited)", 290 | ); 291 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 292 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 293 | GCC_WARN_UNDECLARED_SELECTOR = YES; 294 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 295 | GCC_WARN_UNUSED_FUNCTION = YES; 296 | GCC_WARN_UNUSED_VARIABLE = YES; 297 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 298 | MTL_ENABLE_DEBUG_INFO = YES; 299 | ONLY_ACTIVE_ARCH = YES; 300 | SDKROOT = iphoneos; 301 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 302 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 303 | }; 304 | name = Debug; 305 | }; 306 | 867743041D93D11D00680C55 /* Release */ = { 307 | isa = XCBuildConfiguration; 308 | buildSettings = { 309 | ALWAYS_SEARCH_USER_PATHS = NO; 310 | CLANG_ANALYZER_NONNULL = YES; 311 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 312 | CLANG_CXX_LIBRARY = "libc++"; 313 | CLANG_ENABLE_MODULES = YES; 314 | CLANG_ENABLE_OBJC_ARC = YES; 315 | CLANG_WARN_BOOL_CONVERSION = YES; 316 | CLANG_WARN_CONSTANT_CONVERSION = YES; 317 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 318 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 319 | CLANG_WARN_EMPTY_BODY = YES; 320 | CLANG_WARN_ENUM_CONVERSION = YES; 321 | CLANG_WARN_INFINITE_RECURSION = YES; 322 | CLANG_WARN_INT_CONVERSION = YES; 323 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 324 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 325 | CLANG_WARN_SUSPICIOUS_MOVES = YES; 326 | CLANG_WARN_UNREACHABLE_CODE = YES; 327 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 328 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 329 | COPY_PHASE_STRIP = NO; 330 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 331 | ENABLE_NS_ASSERTIONS = NO; 332 | ENABLE_STRICT_OBJC_MSGSEND = YES; 333 | GCC_C_LANGUAGE_STANDARD = gnu99; 334 | GCC_NO_COMMON_BLOCKS = YES; 335 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 336 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 337 | GCC_WARN_UNDECLARED_SELECTOR = YES; 338 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 339 | GCC_WARN_UNUSED_FUNCTION = YES; 340 | GCC_WARN_UNUSED_VARIABLE = YES; 341 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 342 | MTL_ENABLE_DEBUG_INFO = NO; 343 | SDKROOT = iphoneos; 344 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 345 | VALIDATE_PRODUCT = YES; 346 | }; 347 | name = Release; 348 | }; 349 | 867743061D93D11D00680C55 /* Debug */ = { 350 | isa = XCBuildConfiguration; 351 | baseConfigurationReference = 97EA5B8A511A83628202F890 /* Pods-Example.debug.xcconfig */; 352 | buildSettings = { 353 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 354 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 355 | DEVELOPMENT_TEAM = RWJVRQ865N; 356 | INFOPLIST_FILE = Example/Info.plist; 357 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 358 | PRODUCT_BUNDLE_IDENTIFIER = lalafon.Example; 359 | PRODUCT_NAME = "$(TARGET_NAME)"; 360 | SWIFT_VERSION = 3.0; 361 | }; 362 | name = Debug; 363 | }; 364 | 867743071D93D11D00680C55 /* Release */ = { 365 | isa = XCBuildConfiguration; 366 | baseConfigurationReference = 9BF84E1D77080F80A048DF04 /* Pods-Example.release.xcconfig */; 367 | buildSettings = { 368 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 369 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 370 | DEVELOPMENT_TEAM = RWJVRQ865N; 371 | INFOPLIST_FILE = Example/Info.plist; 372 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 373 | PRODUCT_BUNDLE_IDENTIFIER = lalafon.Example; 374 | PRODUCT_NAME = "$(TARGET_NAME)"; 375 | SWIFT_VERSION = 3.0; 376 | }; 377 | name = Release; 378 | }; 379 | /* End XCBuildConfiguration section */ 380 | 381 | /* Begin XCConfigurationList section */ 382 | 867742EE1D93D11D00680C55 /* Build configuration list for PBXProject "Example" */ = { 383 | isa = XCConfigurationList; 384 | buildConfigurations = ( 385 | 867743031D93D11D00680C55 /* Debug */, 386 | 867743041D93D11D00680C55 /* Release */, 387 | ); 388 | defaultConfigurationIsVisible = 0; 389 | defaultConfigurationName = Release; 390 | }; 391 | 867743051D93D11D00680C55 /* Build configuration list for PBXNativeTarget "Example" */ = { 392 | isa = XCConfigurationList; 393 | buildConfigurations = ( 394 | 867743061D93D11D00680C55 /* Debug */, 395 | 867743071D93D11D00680C55 /* Release */, 396 | ); 397 | defaultConfigurationIsVisible = 0; 398 | defaultConfigurationName = Release; 399 | }; 400 | /* End XCConfigurationList section */ 401 | }; 402 | rootObject = 867742EB1D93D11D00680C55 /* Project object */; 403 | } 404 | -------------------------------------------------------------------------------- /LLSpinner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 864454291D93BBD8009F5A3F /* LLSpinner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8644541F1D93BBD8009F5A3F /* LLSpinner.framework */; }; 11 | 8644542E1D93BBD8009F5A3F /* LLSpinnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8644542D1D93BBD8009F5A3F /* LLSpinnerTests.swift */; }; 12 | 864454301D93BBD8009F5A3F /* LLSpinner.h in Headers */ = {isa = PBXBuildFile; fileRef = 864454221D93BBD8009F5A3F /* LLSpinner.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 8644543A1D93BC15009F5A3F /* LLSpinner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 864454391D93BC15009F5A3F /* LLSpinner.swift */; }; 14 | /* End PBXBuildFile section */ 15 | 16 | /* Begin PBXContainerItemProxy section */ 17 | 8644542A1D93BBD8009F5A3F /* PBXContainerItemProxy */ = { 18 | isa = PBXContainerItemProxy; 19 | containerPortal = 864454161D93BBD8009F5A3F /* Project object */; 20 | proxyType = 1; 21 | remoteGlobalIDString = 8644541E1D93BBD8009F5A3F; 22 | remoteInfo = LLSpinner; 23 | }; 24 | /* End PBXContainerItemProxy section */ 25 | 26 | /* Begin PBXFileReference section */ 27 | 8644541F1D93BBD8009F5A3F /* LLSpinner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LLSpinner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 28 | 864454221D93BBD8009F5A3F /* LLSpinner.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LLSpinner.h; sourceTree = ""; }; 29 | 864454231D93BBD8009F5A3F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 30 | 864454281D93BBD8009F5A3F /* LLSpinnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LLSpinnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 31 | 8644542D1D93BBD8009F5A3F /* LLSpinnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LLSpinnerTests.swift; sourceTree = ""; }; 32 | 8644542F1D93BBD8009F5A3F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 33 | 864454391D93BC15009F5A3F /* LLSpinner.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LLSpinner.swift; sourceTree = ""; }; 34 | /* End PBXFileReference section */ 35 | 36 | /* Begin PBXFrameworksBuildPhase section */ 37 | 8644541B1D93BBD8009F5A3F /* Frameworks */ = { 38 | isa = PBXFrameworksBuildPhase; 39 | buildActionMask = 2147483647; 40 | files = ( 41 | ); 42 | runOnlyForDeploymentPostprocessing = 0; 43 | }; 44 | 864454251D93BBD8009F5A3F /* Frameworks */ = { 45 | isa = PBXFrameworksBuildPhase; 46 | buildActionMask = 2147483647; 47 | files = ( 48 | 864454291D93BBD8009F5A3F /* LLSpinner.framework in Frameworks */, 49 | ); 50 | runOnlyForDeploymentPostprocessing = 0; 51 | }; 52 | /* End PBXFrameworksBuildPhase section */ 53 | 54 | /* Begin PBXGroup section */ 55 | 864454151D93BBD8009F5A3F = { 56 | isa = PBXGroup; 57 | children = ( 58 | 864454211D93BBD8009F5A3F /* LLSpinner */, 59 | 8644542C1D93BBD8009F5A3F /* LLSpinnerTests */, 60 | 864454201D93BBD8009F5A3F /* Products */, 61 | ); 62 | sourceTree = ""; 63 | }; 64 | 864454201D93BBD8009F5A3F /* Products */ = { 65 | isa = PBXGroup; 66 | children = ( 67 | 8644541F1D93BBD8009F5A3F /* LLSpinner.framework */, 68 | 864454281D93BBD8009F5A3F /* LLSpinnerTests.xctest */, 69 | ); 70 | name = Products; 71 | sourceTree = ""; 72 | }; 73 | 864454211D93BBD8009F5A3F /* LLSpinner */ = { 74 | isa = PBXGroup; 75 | children = ( 76 | 864454221D93BBD8009F5A3F /* LLSpinner.h */, 77 | 864454231D93BBD8009F5A3F /* Info.plist */, 78 | 864454391D93BC15009F5A3F /* LLSpinner.swift */, 79 | ); 80 | path = LLSpinner; 81 | sourceTree = ""; 82 | }; 83 | 8644542C1D93BBD8009F5A3F /* LLSpinnerTests */ = { 84 | isa = PBXGroup; 85 | children = ( 86 | 8644542D1D93BBD8009F5A3F /* LLSpinnerTests.swift */, 87 | 8644542F1D93BBD8009F5A3F /* Info.plist */, 88 | ); 89 | path = LLSpinnerTests; 90 | sourceTree = ""; 91 | }; 92 | /* End PBXGroup section */ 93 | 94 | /* Begin PBXHeadersBuildPhase section */ 95 | 8644541C1D93BBD8009F5A3F /* Headers */ = { 96 | isa = PBXHeadersBuildPhase; 97 | buildActionMask = 2147483647; 98 | files = ( 99 | 864454301D93BBD8009F5A3F /* LLSpinner.h in Headers */, 100 | ); 101 | runOnlyForDeploymentPostprocessing = 0; 102 | }; 103 | /* End PBXHeadersBuildPhase section */ 104 | 105 | /* Begin PBXNativeTarget section */ 106 | 8644541E1D93BBD8009F5A3F /* LLSpinner */ = { 107 | isa = PBXNativeTarget; 108 | buildConfigurationList = 864454331D93BBD8009F5A3F /* Build configuration list for PBXNativeTarget "LLSpinner" */; 109 | buildPhases = ( 110 | 8644541A1D93BBD8009F5A3F /* Sources */, 111 | 8644541B1D93BBD8009F5A3F /* Frameworks */, 112 | 8644541C1D93BBD8009F5A3F /* Headers */, 113 | 8644541D1D93BBD8009F5A3F /* Resources */, 114 | ); 115 | buildRules = ( 116 | ); 117 | dependencies = ( 118 | ); 119 | name = LLSpinner; 120 | productName = LLSpinner; 121 | productReference = 8644541F1D93BBD8009F5A3F /* LLSpinner.framework */; 122 | productType = "com.apple.product-type.framework"; 123 | }; 124 | 864454271D93BBD8009F5A3F /* LLSpinnerTests */ = { 125 | isa = PBXNativeTarget; 126 | buildConfigurationList = 864454361D93BBD8009F5A3F /* Build configuration list for PBXNativeTarget "LLSpinnerTests" */; 127 | buildPhases = ( 128 | 864454241D93BBD8009F5A3F /* Sources */, 129 | 864454251D93BBD8009F5A3F /* Frameworks */, 130 | 864454261D93BBD8009F5A3F /* Resources */, 131 | ); 132 | buildRules = ( 133 | ); 134 | dependencies = ( 135 | 8644542B1D93BBD8009F5A3F /* PBXTargetDependency */, 136 | ); 137 | name = LLSpinnerTests; 138 | productName = LLSpinnerTests; 139 | productReference = 864454281D93BBD8009F5A3F /* LLSpinnerTests.xctest */; 140 | productType = "com.apple.product-type.bundle.unit-test"; 141 | }; 142 | /* End PBXNativeTarget section */ 143 | 144 | /* Begin PBXProject section */ 145 | 864454161D93BBD8009F5A3F /* Project object */ = { 146 | isa = PBXProject; 147 | attributes = { 148 | LastSwiftUpdateCheck = 0800; 149 | LastUpgradeCheck = 1200; 150 | ORGANIZATIONNAME = lalafon; 151 | TargetAttributes = { 152 | 8644541E1D93BBD8009F5A3F = { 153 | CreatedOnToolsVersion = 8.0; 154 | LastSwiftMigration = 1200; 155 | ProvisioningStyle = Automatic; 156 | }; 157 | 864454271D93BBD8009F5A3F = { 158 | CreatedOnToolsVersion = 8.0; 159 | LastSwiftMigration = 1200; 160 | ProvisioningStyle = Automatic; 161 | }; 162 | }; 163 | }; 164 | buildConfigurationList = 864454191D93BBD8009F5A3F /* Build configuration list for PBXProject "LLSpinner" */; 165 | compatibilityVersion = "Xcode 3.2"; 166 | developmentRegion = en; 167 | hasScannedForEncodings = 0; 168 | knownRegions = ( 169 | en, 170 | Base, 171 | ); 172 | mainGroup = 864454151D93BBD8009F5A3F; 173 | productRefGroup = 864454201D93BBD8009F5A3F /* Products */; 174 | projectDirPath = ""; 175 | projectRoot = ""; 176 | targets = ( 177 | 8644541E1D93BBD8009F5A3F /* LLSpinner */, 178 | 864454271D93BBD8009F5A3F /* LLSpinnerTests */, 179 | ); 180 | }; 181 | /* End PBXProject section */ 182 | 183 | /* Begin PBXResourcesBuildPhase section */ 184 | 8644541D1D93BBD8009F5A3F /* Resources */ = { 185 | isa = PBXResourcesBuildPhase; 186 | buildActionMask = 2147483647; 187 | files = ( 188 | ); 189 | runOnlyForDeploymentPostprocessing = 0; 190 | }; 191 | 864454261D93BBD8009F5A3F /* Resources */ = { 192 | isa = PBXResourcesBuildPhase; 193 | buildActionMask = 2147483647; 194 | files = ( 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | }; 198 | /* End PBXResourcesBuildPhase section */ 199 | 200 | /* Begin PBXSourcesBuildPhase section */ 201 | 8644541A1D93BBD8009F5A3F /* Sources */ = { 202 | isa = PBXSourcesBuildPhase; 203 | buildActionMask = 2147483647; 204 | files = ( 205 | 8644543A1D93BC15009F5A3F /* LLSpinner.swift in Sources */, 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | }; 209 | 864454241D93BBD8009F5A3F /* Sources */ = { 210 | isa = PBXSourcesBuildPhase; 211 | buildActionMask = 2147483647; 212 | files = ( 213 | 8644542E1D93BBD8009F5A3F /* LLSpinnerTests.swift in Sources */, 214 | ); 215 | runOnlyForDeploymentPostprocessing = 0; 216 | }; 217 | /* End PBXSourcesBuildPhase section */ 218 | 219 | /* Begin PBXTargetDependency section */ 220 | 8644542B1D93BBD8009F5A3F /* PBXTargetDependency */ = { 221 | isa = PBXTargetDependency; 222 | target = 8644541E1D93BBD8009F5A3F /* LLSpinner */; 223 | targetProxy = 8644542A1D93BBD8009F5A3F /* PBXContainerItemProxy */; 224 | }; 225 | /* End PBXTargetDependency section */ 226 | 227 | /* Begin XCBuildConfiguration section */ 228 | 864454311D93BBD8009F5A3F /* Debug */ = { 229 | isa = XCBuildConfiguration; 230 | buildSettings = { 231 | ALWAYS_SEARCH_USER_PATHS = NO; 232 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 233 | CLANG_ANALYZER_NONNULL = YES; 234 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 235 | CLANG_CXX_LIBRARY = "libc++"; 236 | CLANG_ENABLE_MODULES = YES; 237 | CLANG_ENABLE_OBJC_ARC = YES; 238 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 239 | CLANG_WARN_BOOL_CONVERSION = YES; 240 | CLANG_WARN_COMMA = YES; 241 | CLANG_WARN_CONSTANT_CONVERSION = YES; 242 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 243 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 244 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 245 | CLANG_WARN_EMPTY_BODY = YES; 246 | CLANG_WARN_ENUM_CONVERSION = YES; 247 | CLANG_WARN_INFINITE_RECURSION = YES; 248 | CLANG_WARN_INT_CONVERSION = YES; 249 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 250 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 251 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 252 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 253 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 254 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 255 | CLANG_WARN_STRICT_PROTOTYPES = YES; 256 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 257 | CLANG_WARN_SUSPICIOUS_MOVES = YES; 258 | CLANG_WARN_UNREACHABLE_CODE = YES; 259 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 260 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 261 | COPY_PHASE_STRIP = NO; 262 | CURRENT_PROJECT_VERSION = 1; 263 | DEBUG_INFORMATION_FORMAT = dwarf; 264 | ENABLE_STRICT_OBJC_MSGSEND = YES; 265 | ENABLE_TESTABILITY = YES; 266 | GCC_C_LANGUAGE_STANDARD = gnu99; 267 | GCC_DYNAMIC_NO_PIC = NO; 268 | GCC_NO_COMMON_BLOCKS = YES; 269 | GCC_OPTIMIZATION_LEVEL = 0; 270 | GCC_PREPROCESSOR_DEFINITIONS = ( 271 | "DEBUG=1", 272 | "$(inherited)", 273 | ); 274 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 275 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 276 | GCC_WARN_UNDECLARED_SELECTOR = YES; 277 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 278 | GCC_WARN_UNUSED_FUNCTION = YES; 279 | GCC_WARN_UNUSED_VARIABLE = YES; 280 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 281 | MTL_ENABLE_DEBUG_INFO = YES; 282 | ONLY_ACTIVE_ARCH = YES; 283 | SDKROOT = iphoneos; 284 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 285 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 286 | TARGETED_DEVICE_FAMILY = "1,2"; 287 | VERSIONING_SYSTEM = "apple-generic"; 288 | VERSION_INFO_PREFIX = ""; 289 | }; 290 | name = Debug; 291 | }; 292 | 864454321D93BBD8009F5A3F /* Release */ = { 293 | isa = XCBuildConfiguration; 294 | buildSettings = { 295 | ALWAYS_SEARCH_USER_PATHS = NO; 296 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 297 | CLANG_ANALYZER_NONNULL = YES; 298 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 299 | CLANG_CXX_LIBRARY = "libc++"; 300 | CLANG_ENABLE_MODULES = YES; 301 | CLANG_ENABLE_OBJC_ARC = YES; 302 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 303 | CLANG_WARN_BOOL_CONVERSION = YES; 304 | CLANG_WARN_COMMA = YES; 305 | CLANG_WARN_CONSTANT_CONVERSION = YES; 306 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 307 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 308 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 309 | CLANG_WARN_EMPTY_BODY = YES; 310 | CLANG_WARN_ENUM_CONVERSION = YES; 311 | CLANG_WARN_INFINITE_RECURSION = YES; 312 | CLANG_WARN_INT_CONVERSION = YES; 313 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 314 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 315 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 316 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 317 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 318 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 319 | CLANG_WARN_STRICT_PROTOTYPES = YES; 320 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 321 | CLANG_WARN_SUSPICIOUS_MOVES = YES; 322 | CLANG_WARN_UNREACHABLE_CODE = YES; 323 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 324 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 325 | COPY_PHASE_STRIP = NO; 326 | CURRENT_PROJECT_VERSION = 1; 327 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 328 | ENABLE_NS_ASSERTIONS = NO; 329 | ENABLE_STRICT_OBJC_MSGSEND = YES; 330 | GCC_C_LANGUAGE_STANDARD = gnu99; 331 | GCC_NO_COMMON_BLOCKS = YES; 332 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 333 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 334 | GCC_WARN_UNDECLARED_SELECTOR = YES; 335 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 336 | GCC_WARN_UNUSED_FUNCTION = YES; 337 | GCC_WARN_UNUSED_VARIABLE = YES; 338 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 339 | MTL_ENABLE_DEBUG_INFO = NO; 340 | SDKROOT = iphoneos; 341 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 342 | TARGETED_DEVICE_FAMILY = "1,2"; 343 | VALIDATE_PRODUCT = YES; 344 | VERSIONING_SYSTEM = "apple-generic"; 345 | VERSION_INFO_PREFIX = ""; 346 | }; 347 | name = Release; 348 | }; 349 | 864454341D93BBD8009F5A3F /* Debug */ = { 350 | isa = XCBuildConfiguration; 351 | buildSettings = { 352 | CLANG_ENABLE_MODULES = YES; 353 | CODE_SIGN_IDENTITY = ""; 354 | DEFINES_MODULE = YES; 355 | DYLIB_COMPATIBILITY_VERSION = 1; 356 | DYLIB_CURRENT_VERSION = 1; 357 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 358 | INFOPLIST_FILE = LLSpinner/Info.plist; 359 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 360 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 361 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 362 | PRODUCT_BUNDLE_IDENTIFIER = lalafon.LLSpinner; 363 | PRODUCT_NAME = "$(TARGET_NAME)"; 364 | SKIP_INSTALL = YES; 365 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 366 | SWIFT_VERSION = 5.0; 367 | }; 368 | name = Debug; 369 | }; 370 | 864454351D93BBD8009F5A3F /* Release */ = { 371 | isa = XCBuildConfiguration; 372 | buildSettings = { 373 | CLANG_ENABLE_MODULES = YES; 374 | CODE_SIGN_IDENTITY = ""; 375 | DEFINES_MODULE = YES; 376 | DYLIB_COMPATIBILITY_VERSION = 1; 377 | DYLIB_CURRENT_VERSION = 1; 378 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 379 | INFOPLIST_FILE = LLSpinner/Info.plist; 380 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 381 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 382 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 383 | PRODUCT_BUNDLE_IDENTIFIER = lalafon.LLSpinner; 384 | PRODUCT_NAME = "$(TARGET_NAME)"; 385 | SKIP_INSTALL = YES; 386 | SWIFT_VERSION = 5.0; 387 | }; 388 | name = Release; 389 | }; 390 | 864454371D93BBD8009F5A3F /* Debug */ = { 391 | isa = XCBuildConfiguration; 392 | buildSettings = { 393 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 394 | INFOPLIST_FILE = LLSpinnerTests/Info.plist; 395 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 396 | PRODUCT_BUNDLE_IDENTIFIER = lalafon.LLSpinnerTests; 397 | PRODUCT_NAME = "$(TARGET_NAME)"; 398 | SWIFT_VERSION = 5.0; 399 | }; 400 | name = Debug; 401 | }; 402 | 864454381D93BBD8009F5A3F /* Release */ = { 403 | isa = XCBuildConfiguration; 404 | buildSettings = { 405 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 406 | INFOPLIST_FILE = LLSpinnerTests/Info.plist; 407 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 408 | PRODUCT_BUNDLE_IDENTIFIER = lalafon.LLSpinnerTests; 409 | PRODUCT_NAME = "$(TARGET_NAME)"; 410 | SWIFT_VERSION = 5.0; 411 | }; 412 | name = Release; 413 | }; 414 | /* End XCBuildConfiguration section */ 415 | 416 | /* Begin XCConfigurationList section */ 417 | 864454191D93BBD8009F5A3F /* Build configuration list for PBXProject "LLSpinner" */ = { 418 | isa = XCConfigurationList; 419 | buildConfigurations = ( 420 | 864454311D93BBD8009F5A3F /* Debug */, 421 | 864454321D93BBD8009F5A3F /* Release */, 422 | ); 423 | defaultConfigurationIsVisible = 0; 424 | defaultConfigurationName = Release; 425 | }; 426 | 864454331D93BBD8009F5A3F /* Build configuration list for PBXNativeTarget "LLSpinner" */ = { 427 | isa = XCConfigurationList; 428 | buildConfigurations = ( 429 | 864454341D93BBD8009F5A3F /* Debug */, 430 | 864454351D93BBD8009F5A3F /* Release */, 431 | ); 432 | defaultConfigurationIsVisible = 0; 433 | defaultConfigurationName = Release; 434 | }; 435 | 864454361D93BBD8009F5A3F /* Build configuration list for PBXNativeTarget "LLSpinnerTests" */ = { 436 | isa = XCConfigurationList; 437 | buildConfigurations = ( 438 | 864454371D93BBD8009F5A3F /* Debug */, 439 | 864454381D93BBD8009F5A3F /* Release */, 440 | ); 441 | defaultConfigurationIsVisible = 0; 442 | defaultConfigurationName = Release; 443 | }; 444 | /* End XCConfigurationList section */ 445 | }; 446 | rootObject = 864454161D93BBD8009F5A3F /* Project object */; 447 | } 448 | -------------------------------------------------------------------------------- /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 | 0C324CA329121614F7F38640747911C7 /* Pods-Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 699118D7DDD5F335E4FB8B17DC0F12D2 /* Pods-Example-dummy.m */; }; 11 | 111CB4C3AD5A3E2CF2B0455FA3843BD2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; 12 | 17D24094D5A460884218B267858D60BF /* LLSpinner.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0875805CF369094C3556B959C86F5ED /* LLSpinner.swift */; }; 13 | 3E659DE2884A802538BDF4F065606FC7 /* Pods-Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C9BDE82371C83FA9AE91B05F77ACAA36 /* Pods-Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 741B090435E6AC54A63819E9744AB426 /* LLSpinner-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 603483BD368D0178E6F95C28CCF1E7D4 /* LLSpinner-dummy.m */; }; 15 | A5FC4EBCE7FC0DBA35FDEC781C982682 /* LLSpinner-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0996BDAD200C08CAAC9A1E8A9DFF8D27 /* LLSpinner-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | C0369A046654D25120A1E146D63B151F /* LLSpinner.h in Headers */ = {isa = PBXBuildFile; fileRef = 7808D38D64D652DD5488242B26F3B6C6 /* LLSpinner.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | EDD41213478D0C08AF7E2BDD1A5DB765 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 875D379849D81E911AAD24100D4660F6 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 6F387115755677433315A3D00161142B; 26 | remoteInfo = LLSpinner; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 01E6907CF2644EB1CF8E23F708A3DA0B /* Pods-Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Example-resources.sh"; sourceTree = ""; }; 32 | 0996BDAD200C08CAAC9A1E8A9DFF8D27 /* LLSpinner-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LLSpinner-umbrella.h"; sourceTree = ""; }; 33 | 119072C64A19799964E1620D83F514FB /* Pods-Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Example.modulemap"; sourceTree = ""; }; 34 | 149054C495E8EC590CAB4C524133016F /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.debug.xcconfig"; sourceTree = ""; }; 35 | 1D3F529B213C8D9D8371C3DDFD360466 /* LLSpinner.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LLSpinner.xcconfig; sourceTree = ""; }; 36 | 3444F7A217165376FF29995D1DB9FE86 /* LLSpinner-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LLSpinner-prefix.pch"; sourceTree = ""; }; 37 | 3866EE9899F54EF7F7F863976AB3939E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 38 | 47DC5A478D9B48516E3C49A323348AAF /* LLSpinner.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = LLSpinner.modulemap; sourceTree = ""; }; 39 | 552550F3F912264E5D073F8893691F88 /* Pods-Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Example-frameworks.sh"; sourceTree = ""; }; 40 | 603483BD368D0178E6F95C28CCF1E7D4 /* LLSpinner-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LLSpinner-dummy.m"; sourceTree = ""; }; 41 | 699118D7DDD5F335E4FB8B17DC0F12D2 /* Pods-Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Example-dummy.m"; sourceTree = ""; }; 42 | 764D33E23CE6C1111110B04F5CBADADB /* Pods-Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Example-acknowledgements.plist"; sourceTree = ""; }; 43 | 7808D38D64D652DD5488242B26F3B6C6 /* LLSpinner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LLSpinner.h; sourceTree = ""; }; 44 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 45 | A0875805CF369094C3556B959C86F5ED /* LLSpinner.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LLSpinner.swift; sourceTree = ""; }; 46 | A661FECCEBFF9D01869EE3B29C4C1EFF /* Pods-Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Example-acknowledgements.markdown"; sourceTree = ""; }; 47 | C9BDE82371C83FA9AE91B05F77ACAA36 /* Pods-Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Example-umbrella.h"; sourceTree = ""; }; 48 | CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 49 | D0CE3B8607A0ADC8E399A060C284BCA3 /* LLSpinner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LLSpinner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | E4E5BE63DDB3F1859E2D3DEC2C4200B3 /* Pods_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | E512A5F985F876750237FD237C3AEEDA /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.release.xcconfig"; sourceTree = ""; }; 52 | EFFB74AAA6B2AE8DABF0E88E61E09178 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 53 | /* End PBXFileReference section */ 54 | 55 | /* Begin PBXFrameworksBuildPhase section */ 56 | 0BEE28EDD4BD77C3B8A1987AFC40CC02 /* Frameworks */ = { 57 | isa = PBXFrameworksBuildPhase; 58 | buildActionMask = 2147483647; 59 | files = ( 60 | 111CB4C3AD5A3E2CF2B0455FA3843BD2 /* Foundation.framework in Frameworks */, 61 | ); 62 | runOnlyForDeploymentPostprocessing = 0; 63 | }; 64 | EC6480D9C0F23556FEC26A15E6F57390 /* Frameworks */ = { 65 | isa = PBXFrameworksBuildPhase; 66 | buildActionMask = 2147483647; 67 | files = ( 68 | EDD41213478D0C08AF7E2BDD1A5DB765 /* Foundation.framework in Frameworks */, 69 | ); 70 | runOnlyForDeploymentPostprocessing = 0; 71 | }; 72 | /* End PBXFrameworksBuildPhase section */ 73 | 74 | /* Begin PBXGroup section */ 75 | 1B70AC39078B3D4D1A7CD77F61E25F1A /* Development Pods */ = { 76 | isa = PBXGroup; 77 | children = ( 78 | DB6B8312AAEFC04E0BF0F8F9D2631735 /* LLSpinner */, 79 | ); 80 | name = "Development Pods"; 81 | sourceTree = ""; 82 | }; 83 | 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */ = { 84 | isa = PBXGroup; 85 | children = ( 86 | CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */, 87 | ); 88 | name = iOS; 89 | sourceTree = ""; 90 | }; 91 | 4A6093A21E27D7C25B922F1D42CC7A29 /* LLSpinner */ = { 92 | isa = PBXGroup; 93 | children = ( 94 | 7808D38D64D652DD5488242B26F3B6C6 /* LLSpinner.h */, 95 | A0875805CF369094C3556B959C86F5ED /* LLSpinner.swift */, 96 | ); 97 | path = LLSpinner; 98 | sourceTree = ""; 99 | }; 100 | 68B28C748758C77D7281D2FE7B48D8F9 /* Products */ = { 101 | isa = PBXGroup; 102 | children = ( 103 | D0CE3B8607A0ADC8E399A060C284BCA3 /* LLSpinner.framework */, 104 | E4E5BE63DDB3F1859E2D3DEC2C4200B3 /* Pods_Example.framework */, 105 | ); 106 | name = Products; 107 | sourceTree = ""; 108 | }; 109 | 6A4F6A14E3FB951290E4531728B7A461 /* Targets Support Files */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | FE9811ABEB5931E154211FCA14B78350 /* Pods-Example */, 113 | ); 114 | name = "Targets Support Files"; 115 | sourceTree = ""; 116 | }; 117 | 7DB346D0F39D3F0E887471402A8071AB = { 118 | isa = PBXGroup; 119 | children = ( 120 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 121 | 1B70AC39078B3D4D1A7CD77F61E25F1A /* Development Pods */, 122 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 123 | 68B28C748758C77D7281D2FE7B48D8F9 /* Products */, 124 | 6A4F6A14E3FB951290E4531728B7A461 /* Targets Support Files */, 125 | ); 126 | sourceTree = ""; 127 | }; 128 | B497D985D33CC1B6A1142A3E74266F47 /* Support Files */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 3866EE9899F54EF7F7F863976AB3939E /* Info.plist */, 132 | 47DC5A478D9B48516E3C49A323348AAF /* LLSpinner.modulemap */, 133 | 1D3F529B213C8D9D8371C3DDFD360466 /* LLSpinner.xcconfig */, 134 | 603483BD368D0178E6F95C28CCF1E7D4 /* LLSpinner-dummy.m */, 135 | 3444F7A217165376FF29995D1DB9FE86 /* LLSpinner-prefix.pch */, 136 | 0996BDAD200C08CAAC9A1E8A9DFF8D27 /* LLSpinner-umbrella.h */, 137 | ); 138 | name = "Support Files"; 139 | path = "Example/Pods/Target Support Files/LLSpinner"; 140 | sourceTree = ""; 141 | }; 142 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */, 146 | ); 147 | name = Frameworks; 148 | sourceTree = ""; 149 | }; 150 | DB6B8312AAEFC04E0BF0F8F9D2631735 /* LLSpinner */ = { 151 | isa = PBXGroup; 152 | children = ( 153 | 4A6093A21E27D7C25B922F1D42CC7A29 /* LLSpinner */, 154 | B497D985D33CC1B6A1142A3E74266F47 /* Support Files */, 155 | ); 156 | name = LLSpinner; 157 | path = ../..; 158 | sourceTree = ""; 159 | }; 160 | FE9811ABEB5931E154211FCA14B78350 /* Pods-Example */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | EFFB74AAA6B2AE8DABF0E88E61E09178 /* Info.plist */, 164 | 119072C64A19799964E1620D83F514FB /* Pods-Example.modulemap */, 165 | A661FECCEBFF9D01869EE3B29C4C1EFF /* Pods-Example-acknowledgements.markdown */, 166 | 764D33E23CE6C1111110B04F5CBADADB /* Pods-Example-acknowledgements.plist */, 167 | 699118D7DDD5F335E4FB8B17DC0F12D2 /* Pods-Example-dummy.m */, 168 | 552550F3F912264E5D073F8893691F88 /* Pods-Example-frameworks.sh */, 169 | 01E6907CF2644EB1CF8E23F708A3DA0B /* Pods-Example-resources.sh */, 170 | C9BDE82371C83FA9AE91B05F77ACAA36 /* Pods-Example-umbrella.h */, 171 | 149054C495E8EC590CAB4C524133016F /* Pods-Example.debug.xcconfig */, 172 | E512A5F985F876750237FD237C3AEEDA /* Pods-Example.release.xcconfig */, 173 | ); 174 | name = "Pods-Example"; 175 | path = "Target Support Files/Pods-Example"; 176 | sourceTree = ""; 177 | }; 178 | /* End PBXGroup section */ 179 | 180 | /* Begin PBXHeadersBuildPhase section */ 181 | 001B92645E2E9AB9F356CBEE14695BA6 /* Headers */ = { 182 | isa = PBXHeadersBuildPhase; 183 | buildActionMask = 2147483647; 184 | files = ( 185 | 3E659DE2884A802538BDF4F065606FC7 /* Pods-Example-umbrella.h in Headers */, 186 | ); 187 | runOnlyForDeploymentPostprocessing = 0; 188 | }; 189 | BBB028C04A0961AFFBA27007DF020B2A /* Headers */ = { 190 | isa = PBXHeadersBuildPhase; 191 | buildActionMask = 2147483647; 192 | files = ( 193 | A5FC4EBCE7FC0DBA35FDEC781C982682 /* LLSpinner-umbrella.h in Headers */, 194 | C0369A046654D25120A1E146D63B151F /* LLSpinner.h in Headers */, 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | }; 198 | /* End PBXHeadersBuildPhase section */ 199 | 200 | /* Begin PBXNativeTarget section */ 201 | 6F387115755677433315A3D00161142B /* LLSpinner */ = { 202 | isa = PBXNativeTarget; 203 | buildConfigurationList = 93CA95241AFDD840FB3CA9AC81C7E299 /* Build configuration list for PBXNativeTarget "LLSpinner" */; 204 | buildPhases = ( 205 | D83256875BD041E7CAB4685BAB4FC46E /* Sources */, 206 | EC6480D9C0F23556FEC26A15E6F57390 /* Frameworks */, 207 | BBB028C04A0961AFFBA27007DF020B2A /* Headers */, 208 | ); 209 | buildRules = ( 210 | ); 211 | dependencies = ( 212 | ); 213 | name = LLSpinner; 214 | productName = LLSpinner; 215 | productReference = D0CE3B8607A0ADC8E399A060C284BCA3 /* LLSpinner.framework */; 216 | productType = "com.apple.product-type.framework"; 217 | }; 218 | A69D348754BD44C38B2409E984B89D39 /* Pods-Example */ = { 219 | isa = PBXNativeTarget; 220 | buildConfigurationList = 5B06A196477B339C014FABF364547C55 /* Build configuration list for PBXNativeTarget "Pods-Example" */; 221 | buildPhases = ( 222 | E48860BC5B6AE5D5D50F55D65AE1BA3D /* Sources */, 223 | 0BEE28EDD4BD77C3B8A1987AFC40CC02 /* Frameworks */, 224 | 001B92645E2E9AB9F356CBEE14695BA6 /* Headers */, 225 | ); 226 | buildRules = ( 227 | ); 228 | dependencies = ( 229 | 40C5F8284984F2417A665AC1A75FBD54 /* PBXTargetDependency */, 230 | ); 231 | name = "Pods-Example"; 232 | productName = "Pods-Example"; 233 | productReference = E4E5BE63DDB3F1859E2D3DEC2C4200B3 /* Pods_Example.framework */; 234 | productType = "com.apple.product-type.framework"; 235 | }; 236 | /* End PBXNativeTarget section */ 237 | 238 | /* Begin PBXProject section */ 239 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 240 | isa = PBXProject; 241 | attributes = { 242 | LastSwiftUpdateCheck = 0730; 243 | LastUpgradeCheck = 0700; 244 | }; 245 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 246 | compatibilityVersion = "Xcode 3.2"; 247 | developmentRegion = English; 248 | hasScannedForEncodings = 0; 249 | knownRegions = ( 250 | en, 251 | ); 252 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 253 | productRefGroup = 68B28C748758C77D7281D2FE7B48D8F9 /* Products */; 254 | projectDirPath = ""; 255 | projectRoot = ""; 256 | targets = ( 257 | 6F387115755677433315A3D00161142B /* LLSpinner */, 258 | A69D348754BD44C38B2409E984B89D39 /* Pods-Example */, 259 | ); 260 | }; 261 | /* End PBXProject section */ 262 | 263 | /* Begin PBXSourcesBuildPhase section */ 264 | D83256875BD041E7CAB4685BAB4FC46E /* Sources */ = { 265 | isa = PBXSourcesBuildPhase; 266 | buildActionMask = 2147483647; 267 | files = ( 268 | 741B090435E6AC54A63819E9744AB426 /* LLSpinner-dummy.m in Sources */, 269 | 17D24094D5A460884218B267858D60BF /* LLSpinner.swift in Sources */, 270 | ); 271 | runOnlyForDeploymentPostprocessing = 0; 272 | }; 273 | E48860BC5B6AE5D5D50F55D65AE1BA3D /* Sources */ = { 274 | isa = PBXSourcesBuildPhase; 275 | buildActionMask = 2147483647; 276 | files = ( 277 | 0C324CA329121614F7F38640747911C7 /* Pods-Example-dummy.m in Sources */, 278 | ); 279 | runOnlyForDeploymentPostprocessing = 0; 280 | }; 281 | /* End PBXSourcesBuildPhase section */ 282 | 283 | /* Begin PBXTargetDependency section */ 284 | 40C5F8284984F2417A665AC1A75FBD54 /* PBXTargetDependency */ = { 285 | isa = PBXTargetDependency; 286 | name = LLSpinner; 287 | target = 6F387115755677433315A3D00161142B /* LLSpinner */; 288 | targetProxy = 875D379849D81E911AAD24100D4660F6 /* PBXContainerItemProxy */; 289 | }; 290 | /* End PBXTargetDependency section */ 291 | 292 | /* Begin XCBuildConfiguration section */ 293 | 12914D756594D15C6F2CA12FE5F89F1B /* Debug */ = { 294 | isa = XCBuildConfiguration; 295 | buildSettings = { 296 | ALWAYS_SEARCH_USER_PATHS = NO; 297 | CLANG_ANALYZER_NONNULL = YES; 298 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 299 | CLANG_CXX_LIBRARY = "libc++"; 300 | CLANG_ENABLE_MODULES = YES; 301 | CLANG_ENABLE_OBJC_ARC = YES; 302 | CLANG_WARN_BOOL_CONVERSION = YES; 303 | CLANG_WARN_CONSTANT_CONVERSION = YES; 304 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 305 | CLANG_WARN_EMPTY_BODY = YES; 306 | CLANG_WARN_ENUM_CONVERSION = YES; 307 | CLANG_WARN_INT_CONVERSION = YES; 308 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 309 | CLANG_WARN_UNREACHABLE_CODE = YES; 310 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 311 | CODE_SIGNING_REQUIRED = NO; 312 | COPY_PHASE_STRIP = NO; 313 | ENABLE_TESTABILITY = YES; 314 | GCC_C_LANGUAGE_STANDARD = gnu99; 315 | GCC_DYNAMIC_NO_PIC = NO; 316 | GCC_OPTIMIZATION_LEVEL = 0; 317 | GCC_PREPROCESSOR_DEFINITIONS = ( 318 | "POD_CONFIGURATION_DEBUG=1", 319 | "DEBUG=1", 320 | "$(inherited)", 321 | ); 322 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 323 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 324 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 325 | GCC_WARN_UNDECLARED_SELECTOR = YES; 326 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 327 | GCC_WARN_UNUSED_FUNCTION = YES; 328 | GCC_WARN_UNUSED_VARIABLE = YES; 329 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 330 | ONLY_ACTIVE_ARCH = YES; 331 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 332 | STRIP_INSTALLED_PRODUCT = NO; 333 | SYMROOT = "${SRCROOT}/../build"; 334 | }; 335 | name = Debug; 336 | }; 337 | 251CF8F6CFE31A0260CA36D417ED105E /* Debug */ = { 338 | isa = XCBuildConfiguration; 339 | baseConfigurationReference = 1D3F529B213C8D9D8371C3DDFD360466 /* LLSpinner.xcconfig */; 340 | buildSettings = { 341 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 342 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 343 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 344 | CURRENT_PROJECT_VERSION = 1; 345 | DEBUG_INFORMATION_FORMAT = dwarf; 346 | DEFINES_MODULE = YES; 347 | DYLIB_COMPATIBILITY_VERSION = 1; 348 | DYLIB_CURRENT_VERSION = 1; 349 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 350 | ENABLE_STRICT_OBJC_MSGSEND = YES; 351 | GCC_NO_COMMON_BLOCKS = YES; 352 | GCC_PREFIX_HEADER = "Target Support Files/LLSpinner/LLSpinner-prefix.pch"; 353 | INFOPLIST_FILE = "Target Support Files/LLSpinner/Info.plist"; 354 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 355 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 356 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 357 | MODULEMAP_FILE = "Target Support Files/LLSpinner/LLSpinner.modulemap"; 358 | MTL_ENABLE_DEBUG_INFO = YES; 359 | PRODUCT_NAME = LLSpinner; 360 | SDKROOT = iphoneos; 361 | SKIP_INSTALL = YES; 362 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 363 | SWIFT_VERSION = 3.0; 364 | TARGETED_DEVICE_FAMILY = "1,2"; 365 | VERSIONING_SYSTEM = "apple-generic"; 366 | VERSION_INFO_PREFIX = ""; 367 | }; 368 | name = Debug; 369 | }; 370 | 2B71B946DA875E7833005D672B253B57 /* Release */ = { 371 | isa = XCBuildConfiguration; 372 | baseConfigurationReference = E512A5F985F876750237FD237C3AEEDA /* Pods-Example.release.xcconfig */; 373 | buildSettings = { 374 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 375 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 376 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 377 | CURRENT_PROJECT_VERSION = 1; 378 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 379 | DEFINES_MODULE = YES; 380 | DYLIB_COMPATIBILITY_VERSION = 1; 381 | DYLIB_CURRENT_VERSION = 1; 382 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 383 | ENABLE_STRICT_OBJC_MSGSEND = YES; 384 | GCC_NO_COMMON_BLOCKS = YES; 385 | INFOPLIST_FILE = "Target Support Files/Pods-Example/Info.plist"; 386 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 387 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 388 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 389 | MACH_O_TYPE = staticlib; 390 | MODULEMAP_FILE = "Target Support Files/Pods-Example/Pods-Example.modulemap"; 391 | MTL_ENABLE_DEBUG_INFO = NO; 392 | OTHER_LDFLAGS = ""; 393 | OTHER_LIBTOOLFLAGS = ""; 394 | PODS_ROOT = "$(SRCROOT)"; 395 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 396 | PRODUCT_NAME = Pods_Example; 397 | SDKROOT = iphoneos; 398 | SKIP_INSTALL = YES; 399 | TARGETED_DEVICE_FAMILY = "1,2"; 400 | VERSIONING_SYSTEM = "apple-generic"; 401 | VERSION_INFO_PREFIX = ""; 402 | }; 403 | name = Release; 404 | }; 405 | 76B9A18E68F77CD92B412F2820EB8391 /* Debug */ = { 406 | isa = XCBuildConfiguration; 407 | baseConfigurationReference = 149054C495E8EC590CAB4C524133016F /* Pods-Example.debug.xcconfig */; 408 | buildSettings = { 409 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 410 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 411 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 412 | CURRENT_PROJECT_VERSION = 1; 413 | DEBUG_INFORMATION_FORMAT = dwarf; 414 | DEFINES_MODULE = YES; 415 | DYLIB_COMPATIBILITY_VERSION = 1; 416 | DYLIB_CURRENT_VERSION = 1; 417 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 418 | ENABLE_STRICT_OBJC_MSGSEND = YES; 419 | GCC_NO_COMMON_BLOCKS = YES; 420 | INFOPLIST_FILE = "Target Support Files/Pods-Example/Info.plist"; 421 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 422 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 423 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 424 | MACH_O_TYPE = staticlib; 425 | MODULEMAP_FILE = "Target Support Files/Pods-Example/Pods-Example.modulemap"; 426 | MTL_ENABLE_DEBUG_INFO = YES; 427 | OTHER_LDFLAGS = ""; 428 | OTHER_LIBTOOLFLAGS = ""; 429 | PODS_ROOT = "$(SRCROOT)"; 430 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 431 | PRODUCT_NAME = Pods_Example; 432 | SDKROOT = iphoneos; 433 | SKIP_INSTALL = YES; 434 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 435 | TARGETED_DEVICE_FAMILY = "1,2"; 436 | VERSIONING_SYSTEM = "apple-generic"; 437 | VERSION_INFO_PREFIX = ""; 438 | }; 439 | name = Debug; 440 | }; 441 | E664F25D1CE57D9CAB66E5DC3FB25111 /* Release */ = { 442 | isa = XCBuildConfiguration; 443 | baseConfigurationReference = 1D3F529B213C8D9D8371C3DDFD360466 /* LLSpinner.xcconfig */; 444 | buildSettings = { 445 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 446 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 447 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 448 | CURRENT_PROJECT_VERSION = 1; 449 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 450 | DEFINES_MODULE = YES; 451 | DYLIB_COMPATIBILITY_VERSION = 1; 452 | DYLIB_CURRENT_VERSION = 1; 453 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 454 | ENABLE_STRICT_OBJC_MSGSEND = YES; 455 | GCC_NO_COMMON_BLOCKS = YES; 456 | GCC_PREFIX_HEADER = "Target Support Files/LLSpinner/LLSpinner-prefix.pch"; 457 | INFOPLIST_FILE = "Target Support Files/LLSpinner/Info.plist"; 458 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 459 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 460 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 461 | MODULEMAP_FILE = "Target Support Files/LLSpinner/LLSpinner.modulemap"; 462 | MTL_ENABLE_DEBUG_INFO = NO; 463 | PRODUCT_NAME = LLSpinner; 464 | SDKROOT = iphoneos; 465 | SKIP_INSTALL = YES; 466 | SWIFT_VERSION = 3.0; 467 | TARGETED_DEVICE_FAMILY = "1,2"; 468 | VERSIONING_SYSTEM = "apple-generic"; 469 | VERSION_INFO_PREFIX = ""; 470 | }; 471 | name = Release; 472 | }; 473 | E72E7977875C2D251FC62736BBDDC389 /* Release */ = { 474 | isa = XCBuildConfiguration; 475 | buildSettings = { 476 | ALWAYS_SEARCH_USER_PATHS = NO; 477 | CLANG_ANALYZER_NONNULL = YES; 478 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 479 | CLANG_CXX_LIBRARY = "libc++"; 480 | CLANG_ENABLE_MODULES = YES; 481 | CLANG_ENABLE_OBJC_ARC = YES; 482 | CLANG_WARN_BOOL_CONVERSION = YES; 483 | CLANG_WARN_CONSTANT_CONVERSION = YES; 484 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 485 | CLANG_WARN_EMPTY_BODY = YES; 486 | CLANG_WARN_ENUM_CONVERSION = YES; 487 | CLANG_WARN_INT_CONVERSION = YES; 488 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 489 | CLANG_WARN_UNREACHABLE_CODE = YES; 490 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 491 | CODE_SIGNING_REQUIRED = NO; 492 | COPY_PHASE_STRIP = YES; 493 | ENABLE_NS_ASSERTIONS = NO; 494 | GCC_C_LANGUAGE_STANDARD = gnu99; 495 | GCC_PREPROCESSOR_DEFINITIONS = ( 496 | "POD_CONFIGURATION_RELEASE=1", 497 | "$(inherited)", 498 | ); 499 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 500 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 501 | GCC_WARN_UNDECLARED_SELECTOR = YES; 502 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 503 | GCC_WARN_UNUSED_FUNCTION = YES; 504 | GCC_WARN_UNUSED_VARIABLE = YES; 505 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 506 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 507 | STRIP_INSTALLED_PRODUCT = NO; 508 | SYMROOT = "${SRCROOT}/../build"; 509 | VALIDATE_PRODUCT = YES; 510 | }; 511 | name = Release; 512 | }; 513 | /* End XCBuildConfiguration section */ 514 | 515 | /* Begin XCConfigurationList section */ 516 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 517 | isa = XCConfigurationList; 518 | buildConfigurations = ( 519 | 12914D756594D15C6F2CA12FE5F89F1B /* Debug */, 520 | E72E7977875C2D251FC62736BBDDC389 /* Release */, 521 | ); 522 | defaultConfigurationIsVisible = 0; 523 | defaultConfigurationName = Release; 524 | }; 525 | 5B06A196477B339C014FABF364547C55 /* Build configuration list for PBXNativeTarget "Pods-Example" */ = { 526 | isa = XCConfigurationList; 527 | buildConfigurations = ( 528 | 76B9A18E68F77CD92B412F2820EB8391 /* Debug */, 529 | 2B71B946DA875E7833005D672B253B57 /* Release */, 530 | ); 531 | defaultConfigurationIsVisible = 0; 532 | defaultConfigurationName = Release; 533 | }; 534 | 93CA95241AFDD840FB3CA9AC81C7E299 /* Build configuration list for PBXNativeTarget "LLSpinner" */ = { 535 | isa = XCConfigurationList; 536 | buildConfigurations = ( 537 | 251CF8F6CFE31A0260CA36D417ED105E /* Debug */, 538 | E664F25D1CE57D9CAB66E5DC3FB25111 /* Release */, 539 | ); 540 | defaultConfigurationIsVisible = 0; 541 | defaultConfigurationName = Release; 542 | }; 543 | /* End XCConfigurationList section */ 544 | }; 545 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 546 | } 547 | --------------------------------------------------------------------------------