├── Classes ├── .gitkeep ├── CLProgressHUD.h └── CLProgressHUD.m ├── _Pods.xcodeproj ├── .DS_Store ├── Example ├── Tests │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── Tests-Info.plist ├── CLProgressHUD │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── CLViewController.h │ ├── CLAppDelegate.h │ ├── main.m │ ├── CLProgressHUD-Prefix.pch │ ├── CLViewController.m │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CLProgressHUD-Info.plist │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ └── CLAppDelegate.m ├── Pods │ ├── Target Support Files │ │ ├── CLProgressHUD │ │ │ ├── CLProgressHUD.modulemap │ │ │ ├── CLProgressHUD-dummy.m │ │ │ ├── CLProgressHUD-prefix.pch │ │ │ ├── CLProgressHUD-umbrella.h │ │ │ ├── CLProgressHUD.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-CLProgressHUD_Tests │ │ │ ├── Pods-CLProgressHUD_Tests-acknowledgements.markdown │ │ │ ├── Pods-CLProgressHUD_Tests.modulemap │ │ │ ├── Pods-CLProgressHUD_Tests-dummy.m │ │ │ ├── Pods-CLProgressHUD_Tests-umbrella.h │ │ │ ├── Pods-CLProgressHUD_Tests.debug.xcconfig │ │ │ ├── Pods-CLProgressHUD_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-CLProgressHUD_Tests-acknowledgements.plist │ │ │ ├── Pods-CLProgressHUD_Tests-frameworks.sh │ │ │ └── Pods-CLProgressHUD_Tests-resources.sh │ │ └── Pods-CLProgressHUD_Example │ │ │ ├── Pods-CLProgressHUD_Example.modulemap │ │ │ ├── Pods-CLProgressHUD_Example-dummy.m │ │ │ ├── Pods-CLProgressHUD_Example-umbrella.h │ │ │ ├── Pods-CLProgressHUD_Example.debug.xcconfig │ │ │ ├── Pods-CLProgressHUD_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-CLProgressHUD_Example-acknowledgements.markdown │ │ │ ├── Pods-CLProgressHUD_Example-acknowledgements.plist │ │ │ ├── Pods-CLProgressHUD_Example-frameworks.sh │ │ │ └── Pods-CLProgressHUD_Example-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── CLProgressHUD.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── CLProgressHUD.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── CLProgressHUD-Example.xcscheme │ └── project.pbxproj ├── CLProgressHUD.xcworkspace │ └── contents.xcworkspacedata └── Podfile.lock ├── Screenshot ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── .travis.yml ├── .gitignore ├── README.md ├── LICENSE └── CLProgressHUD.podspec /Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleexiang/CLProgressHUD/HEAD/.DS_Store -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleexiang/CLProgressHUD/HEAD/Screenshot/1.png -------------------------------------------------------------------------------- /Screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleexiang/CLProgressHUD/HEAD/Screenshot/2.png -------------------------------------------------------------------------------- /Screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleexiang/CLProgressHUD/HEAD/Screenshot/3.png -------------------------------------------------------------------------------- /Screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleexiang/CLProgressHUD/HEAD/Screenshot/4.png -------------------------------------------------------------------------------- /Example/CLProgressHUD/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // The contents of this file are implicitly included at the beginning of every test case source file. 2 | 3 | #ifdef __OBJC__ 4 | 5 | 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLProgressHUD/CLProgressHUD.modulemap: -------------------------------------------------------------------------------- 1 | framework module CLProgressHUD { 2 | umbrella header "CLProgressHUD-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLProgressHUD/CLProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_CLProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_CLProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'CLProgressHUD_Example' do 4 | pod 'CLProgressHUD', :path => '../' 5 | 6 | target 'CLProgressHUD_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_CLProgressHUD_Tests { 2 | umbrella header "Pods-CLProgressHUD_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/CLProgressHUD.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_CLProgressHUD_Example { 2 | umbrella header "Pods-CLProgressHUD_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_CLProgressHUD_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_CLProgressHUD_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_CLProgressHUD_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_CLProgressHUD_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/CLViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CLViewController.h 3 | // CLProgressHUD 4 | // 5 | // Created by clee on 04/15/2017. 6 | // Copyright (c) 2017 clee. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface CLViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLProgressHUD/CLProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/CLProgressHUD.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/CLAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // CLAppDelegate.h 3 | // CLProgressHUD 4 | // 5 | // Created by clee on 04/15/2017. 6 | // Copyright (c) 2017 clee. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface CLAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - CLProgressHUD (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - CLProgressHUD (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | CLProgressHUD: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | CLProgressHUD: 78f78a73a29a543e99a7ccc6f44a9f1937c45205 13 | 14 | PODFILE CHECKSUM: 7c5235bc0f597d7ff98c82dcf0ce0e0ff91db3f1 15 | 16 | COCOAPODS: 1.2.0 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - CLProgressHUD (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - CLProgressHUD (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | CLProgressHUD: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | CLProgressHUD: 78f78a73a29a543e99a7ccc6f44a9f1937c45205 13 | 14 | PODFILE CHECKSUM: 7c5235bc0f597d7ff98c82dcf0ce0e0ff91db3f1 15 | 16 | COCOAPODS: 1.2.0 17 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CLProgressHUD 4 | // 5 | // Created by clee on 04/15/2017. 6 | // Copyright (c) 2017 clee. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "CLAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) 13 | { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([CLAppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/CLProgressHUD-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | @import UIKit; 15 | @import Foundation; 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLProgressHUD/CLProgressHUD-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "CLProgressHUD.h" 14 | 15 | FOUNDATION_EXPORT double CLProgressHUDVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char CLProgressHUDVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_CLProgressHUD_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_CLProgressHUD_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_CLProgressHUD_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_CLProgressHUD_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLProgressHUD/CLProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/CLProgressHUD 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -workspace Example/CLProgressHUD.xcworkspace -scheme CLProgressHUD-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/CLProgressHUD" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/CLProgressHUD/CLProgressHUD.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/CLProgressHUD" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/CLProgressHUD/CLProgressHUD.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT}/Pods 8 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CLProgressHUD.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CLProgressHUD", 3 | "version": "0.1.0", 4 | "summary": "A short description of CLProgressHUD.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/clee/CLProgressHUD", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "clee": "cleexiang@126.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/clee/CLProgressHUD.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/CLProgressHUD" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/CLProgressHUD/CLProgressHUD.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "CLProgressHUD" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/CLProgressHUD" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/CLProgressHUD/CLProgressHUD.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "CLProgressHUD" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | .DS_Store 3 | */build/* 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata/ 13 | *.xccheckout 14 | profile 15 | *.moved-aside 16 | DerivedData 17 | *.hmap 18 | *.ipa 19 | 20 | # Bundler 21 | .bundle 22 | 23 | Carthage 24 | # We recommend against adding the Pods directory to your .gitignore. However 25 | # you should judge for yourself, the pros and cons are mentioned at: 26 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 27 | # 28 | # Note: if you ignore the Pods directory, make sure to uncomment 29 | # `pod install` in .travis.yml 30 | # 31 | # Pods/ -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // CLProgressHUDTests.m 3 | // CLProgressHUDTests 4 | // 5 | // Created by clee on 04/15/2017. 6 | // Copyright (c) 2017 clee. All rights reserved. 7 | // 8 | 9 | @import XCTest; 10 | 11 | @interface Tests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation Tests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | 36 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLProgressHUD/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/CLViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // CLViewController.m 3 | // CLProgressHUD 4 | // 5 | // Created by clee on 04/15/2017. 6 | // Copyright (c) 2017 clee. All rights reserved. 7 | // 8 | 9 | #import "CLViewController.h" 10 | #import 11 | 12 | @interface CLViewController () 13 | 14 | @end 15 | 16 | @implementation CLViewController 17 | 18 | - (void)viewDidLoad 19 | { 20 | [super viewDidLoad]; 21 | // Do any additional setup after loading the view, typically from a nib. 22 | } 23 | 24 | - (void)didReceiveMemoryWarning 25 | { 26 | [super didReceiveMemoryWarning]; 27 | // Dispose of any resources that can be recreated. 28 | } 29 | 30 | - (IBAction)buttonClicked:(id)sender { 31 | CLProgressHUD *hud = [[CLProgressHUD alloc] initWithView:self.view]; 32 | [self.view addSubview:hud]; 33 | hud.text = @"Loading..."; 34 | hud.shape = CLProgressHUDShapeCircle; 35 | hud.type = CLProgressHUDTypeDarkForground; 36 | [hud showWithAnimation:YES duration:3.0]; 37 | } 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CLProgressHUD 2 | 3 | [![CI Status](http://img.shields.io/travis/clee/CLProgressHUD.svg?style=flat)](https://travis-ci.org/clee/CLProgressHUD) 4 | [![Version](https://img.shields.io/cocoapods/v/CLProgressHUD.svg?style=flat)](http://cocoapods.org/pods/CLProgressHUD) 5 | [![License](https://img.shields.io/cocoapods/l/CLProgressHUD.svg?style=flat)](http://cocoapods.org/pods/CLProgressHUD) 6 | [![Platform](https://img.shields.io/cocoapods/p/CLProgressHUD.svg?style=flat)](http://cocoapods.org/pods/CLProgressHUD) 7 | 8 | ## Example 9 | 10 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 11 | 12 | ## Requirements 13 | 14 | ## Installation 15 | 16 | CLProgressHUD is available through [CocoaPods](http://cocoapods.org). To install 17 | it, simply add the following line to your Podfile: 18 | 19 | ```ruby 20 | pod "CLProgressHUD" 21 | ``` 22 | 23 | ## Author 24 | 25 | clee, cleexiang@126.com 26 | 27 | ## License 28 | 29 | CLProgressHUD is available under the MIT license. See the LICENSE file for more info. -------------------------------------------------------------------------------- /Classes/CLProgressHUD.h: -------------------------------------------------------------------------------- 1 | // 2 | // CLProgressHUD.h 3 | // CLProgressHUDDemo 4 | // 5 | // Created by lixiang on 13-12-30. 6 | // Copyright (c) 2013年 cleexiang. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef NS_ENUM(NSUInteger, CLProgressHUDType) { 12 | CLProgressHUDTypeDarkForground, 13 | CLProgressHUDTypeDarkBackground 14 | }; 15 | 16 | typedef NS_ENUM(NSUInteger, CLProgressHUDShape) { 17 | CLProgressHUDShapeLinear, 18 | CLProgressHUDShapeCircle 19 | }; 20 | 21 | @interface CLProgressHUD : UIView { 22 | 23 | } 24 | 25 | @property (nonatomic, assign) CLProgressHUDType type; 26 | @property (nonatomic, assign) CLProgressHUDShape shape; 27 | @property (nonatomic, assign) CGFloat diameter; 28 | @property (nonatomic, strong) NSString *text; 29 | 30 | - (id)initWithView:(UIView *)view; 31 | - (void)show; 32 | - (void)showWithAnimation:(BOOL)animated; 33 | - (void)showWithAnimation:(BOOL)animated duration:(NSTimeInterval)duration; 34 | - (void)dismiss; 35 | - (void)dismissWithAnimation:(BOOL)animated; 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 clee 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## CLProgressHUD 5 | 6 | Copyright (c) 2017 clee 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/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 | -------------------------------------------------------------------------------- /CLProgressHUD.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint CLProgressHUD.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'CLProgressHUD' 11 | s.version = '0.0.1' 12 | s.summary = 'A colorful progress loading control for you iPhone or iPad APP.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | TODO: Add long description of the pod here. 22 | DESC 23 | 24 | s.homepage = 'https://github.com/cleexiang/CLProgressHUD' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'clee' => 'cleexiang@126.com' } 28 | s.source = { :git => 'https://github.com/clee/CLProgressHUD.git', :tag => s.version.to_s } 29 | # s.social_media_url = 'https://twitter.com/' 30 | 31 | s.ios.deployment_target = '8.0' 32 | 33 | s.source_files = 'Classes/**/*' 34 | 35 | # s.resource_bundles = { 36 | # 'CLProgressHUD' => ['CLProgressHUD/Assets/*.png'] 37 | # } 38 | 39 | # s.public_header_files = 'Pod/Classes/**/*.h' 40 | # s.frameworks = 'UIKit', 'MapKit' 41 | # s.dependency 'AFNetworking', '~> 2.3' 42 | end 43 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/CLProgressHUD-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIMainStoryboardFile 30 | Main 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | } 88 | ], 89 | "info" : { 90 | "version" : 1, 91 | "author" : "xcode" 92 | } 93 | } 94 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/CLAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // CLAppDelegate.m 3 | // CLProgressHUD 4 | // 5 | // Created by clee on 04/15/2017. 6 | // Copyright (c) 2017 clee. All rights reserved. 7 | // 8 | 9 | #import "CLAppDelegate.h" 10 | 11 | @implementation CLAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 22 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2017 clee <cleexiang@126.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | CLProgressHUD 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/CLProgressHUD/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 91 | wait 92 | fi 93 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | 91 | if [[ "$CONFIGURATION" == "Debug" ]]; then 92 | install_framework "$BUILT_PRODUCTS_DIR/CLProgressHUD/CLProgressHUD.framework" 93 | fi 94 | if [[ "$CONFIGURATION" == "Release" ]]; then 95 | install_framework "$BUILT_PRODUCTS_DIR/CLProgressHUD/CLProgressHUD.framework" 96 | fi 97 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 98 | wait 99 | fi 100 | -------------------------------------------------------------------------------- /Example/CLProgressHUD.xcodeproj/xcshareddata/xcschemes/CLProgressHUD-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | *) 25 | TARGET_DEVICE_ARGS="--target-device mac" 26 | ;; 27 | esac 28 | 29 | install_resource() 30 | { 31 | if [[ "$1" = /* ]] ; then 32 | RESOURCE_PATH="$1" 33 | else 34 | RESOURCE_PATH="${PODS_ROOT}/$1" 35 | fi 36 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 37 | cat << EOM 38 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 39 | EOM 40 | exit 1 41 | fi 42 | case $RESOURCE_PATH in 43 | *.storyboard) 44 | 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}" 45 | 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} 46 | ;; 47 | *.xib) 48 | 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}" 49 | 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} 50 | ;; 51 | *.framework) 52 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 54 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 55 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | ;; 57 | *.xcdatamodel) 58 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 59 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 60 | ;; 61 | *.xcdatamodeld) 62 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 63 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 64 | ;; 65 | *.xcmappingmodel) 66 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 67 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 68 | ;; 69 | *.xcassets) 70 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 71 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 72 | ;; 73 | *) 74 | echo "$RESOURCE_PATH" 75 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 76 | ;; 77 | esac 78 | } 79 | 80 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 83 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | fi 86 | rm -f "$RESOURCES_TO_COPY" 87 | 88 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 89 | then 90 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 91 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 92 | while read line; do 93 | if [[ $line != "${PODS_ROOT}*" ]]; then 94 | XCASSET_FILES+=("$line") 95 | fi 96 | done <<<"$OTHER_XCASSETS" 97 | 98 | 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}" 99 | fi 100 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | *) 25 | TARGET_DEVICE_ARGS="--target-device mac" 26 | ;; 27 | esac 28 | 29 | install_resource() 30 | { 31 | if [[ "$1" = /* ]] ; then 32 | RESOURCE_PATH="$1" 33 | else 34 | RESOURCE_PATH="${PODS_ROOT}/$1" 35 | fi 36 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 37 | cat << EOM 38 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 39 | EOM 40 | exit 1 41 | fi 42 | case $RESOURCE_PATH in 43 | *.storyboard) 44 | 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}" 45 | 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} 46 | ;; 47 | *.xib) 48 | 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}" 49 | 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} 50 | ;; 51 | *.framework) 52 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 54 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 55 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | ;; 57 | *.xcdatamodel) 58 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 59 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 60 | ;; 61 | *.xcdatamodeld) 62 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 63 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 64 | ;; 65 | *.xcmappingmodel) 66 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 67 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 68 | ;; 69 | *.xcassets) 70 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 71 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 72 | ;; 73 | *) 74 | echo "$RESOURCE_PATH" 75 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 76 | ;; 77 | esac 78 | } 79 | 80 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 83 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | fi 86 | rm -f "$RESOURCES_TO_COPY" 87 | 88 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 89 | then 90 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 91 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 92 | while read line; do 93 | if [[ $line != "${PODS_ROOT}*" ]]; then 94 | XCASSET_FILES+=("$line") 95 | fi 96 | done <<<"$OTHER_XCASSETS" 97 | 98 | 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}" 99 | fi 100 | -------------------------------------------------------------------------------- /Classes/CLProgressHUD.m: -------------------------------------------------------------------------------- 1 | // 2 | // CLProgressHUD.m 3 | // CLProgressHUDDemo 4 | // 5 | // Created by lixiang on 13-12-30. 6 | // Copyright (c) 2013年 cleexiang. All rights reserved. 7 | // 8 | 9 | #import "CLProgressHUD.h" 10 | 11 | #ifndef RGBA 12 | #define RGBA(r,g,b,a) [UIColor colorWithRed:(float)r/255.0f green:(float)g/255.0f blue:(float)b/255.0f alpha:a] 13 | #endif 14 | 15 | static float const xMargin = 10; 16 | float Degrees2Radians(float degrees) { return degrees * M_PI / 180; } 17 | 18 | @interface CLProgressHUD () { 19 | NSInteger _animationIndex; 20 | } 21 | 22 | @property (nonatomic, weak) UIView *hudView; 23 | @property (nonatomic, weak) UILabel *stringLabel; 24 | @property (nonatomic, strong) NSArray *ringsColor; 25 | @property (nonatomic, strong) NSArray *shapeLayers; 26 | 27 | @end 28 | 29 | @implementation CLProgressHUD 30 | 31 | - (void)dealloc { 32 | [self unregisterKVO]; 33 | } 34 | 35 | - (id)initWithView:(UIView *)view { 36 | return [self initWithFrame:view.bounds]; 37 | } 38 | 39 | - (id)initWithFrame:(CGRect)frame { 40 | self = [super initWithFrame:frame]; 41 | if (self) { 42 | self.alpha = 0.0; 43 | self.backgroundColor = [UIColor clearColor]; 44 | self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; 45 | 46 | if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone) { 47 | _diameter = 10.0; 48 | } else { 49 | _diameter = 12.0; 50 | } 51 | [self initSubviews]; 52 | [self registerKVO]; 53 | NSArray *ringsColor = @[RGBA(238, 191, 0, 1), 54 | RGBA(235, 94, 1, 1), 55 | RGBA(220, 2, 75, 1), 56 | RGBA(230, 24, 119, 1), 57 | RGBA(198, 0, 129, 1), 58 | RGBA(121, 21, 129, 1), 59 | RGBA(15, 86, 166, 1), 60 | RGBA(10, 170, 180, 1)]; 61 | self.ringsColor = ringsColor; 62 | self.type = CLProgressHUDTypeDarkForground; 63 | self.shape = CLProgressHUDShapeLinear; 64 | } 65 | return self; 66 | } 67 | 68 | - (void)layoutSubviews { 69 | [super layoutSubviews]; 70 | [self layout]; 71 | } 72 | 73 | - (void)layout { 74 | CGFloat hudWidth; 75 | CGFloat hudHeight; 76 | if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone) { 77 | hudWidth = 200.0; 78 | hudHeight = 80.0; 79 | } else { 80 | hudWidth = 210.0; 81 | hudHeight = 90.0; 82 | } 83 | self.hudView.frame = CGRectMake((CGRectGetWidth(self.bounds)-hudWidth)*0.5, (CGRectGetHeight(self.bounds)-hudHeight)*0.5, hudWidth, hudHeight); 84 | if (_shape == CLProgressHUDShapeLinear) { 85 | self.stringLabel.frame = CGRectMake(xMargin, 20, CGRectGetWidth(_hudView.bounds)-xMargin*2, 16); 86 | } else { 87 | self.stringLabel.frame = CGRectMake(xMargin, CGRectGetHeight(_hudView.bounds)-20, CGRectGetWidth(_hudView.bounds)-xMargin*2, 16); 88 | } 89 | } 90 | 91 | #pragma mark - init Method 92 | - (void)initSubviews { 93 | UIView *hudView = [[UIView alloc] initWithFrame:CGRectZero]; 94 | _hudView = hudView; 95 | _hudView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin; 96 | [self addSubview:_hudView]; 97 | 98 | UILabel *stringLabel = [[UILabel alloc] initWithFrame:CGRectZero]; 99 | stringLabel.backgroundColor = [UIColor clearColor]; 100 | stringLabel.font = [UIFont systemFontOfSize:16.0f]; 101 | stringLabel.textColor = [UIColor whiteColor]; 102 | stringLabel.textAlignment = NSTextAlignmentCenter; 103 | self.stringLabel = stringLabel; 104 | [self.hudView addSubview:_stringLabel]; 105 | } 106 | 107 | #pragma mark - Private Method 108 | - (NSArray *)createColorShapes:(NSArray *)colors ofShape:(CLProgressHUDShape)shape { 109 | NSMutableArray *shapesArray = [NSMutableArray array]; 110 | if (shape == CLProgressHUDShapeLinear) { 111 | CGFloat x = (CGRectGetWidth(_hudView.bounds)-_diameter*(_ringsColor.count*2-1))*0.5; 112 | CGFloat y; 113 | if ([_stringLabel.text isEqualToString:@""]) { 114 | y = CGRectGetHeight(_hudView.bounds)*0.5; 115 | } else { 116 | y = CGRectGetHeight(_hudView.bounds)*0.5+_diameter; 117 | } 118 | CGPoint lastPoint = CGPointMake(x, y); 119 | for (UIColor *color in colors) { 120 | CGRect rect = CGRectMake(lastPoint.x, lastPoint.y, self.diameter, self.diameter); 121 | CGPoint newPoint = [self nextPointFromPoint:lastPoint]; 122 | lastPoint = newPoint; 123 | CGMutablePathRef path = CGPathCreateMutable(); 124 | CGPathAddEllipseInRect(path, NULL, rect); 125 | CAShapeLayer *shapeLayer = [CAShapeLayer layer]; 126 | shapeLayer.fillColor = color.CGColor; 127 | shapeLayer.path = path; 128 | shapeLayer.edgeAntialiasingMask = kCALayerLeftEdge | kCALayerRightEdge | kCALayerTopEdge | kCALayerBottomEdge; 129 | shapeLayer.allowsEdgeAntialiasing = YES; 130 | CGPathRelease(path); 131 | [shapesArray addObject:shapeLayer]; 132 | } 133 | } else { 134 | CGFloat centerX = CGRectGetWidth(_hudView.bounds)*0.5; 135 | CGFloat centerY; 136 | if ([_stringLabel.text isEqualToString:@""]) { 137 | centerY = (CGRectGetHeight(_hudView.bounds)-_diameter)*0.5; 138 | } else { 139 | centerY = (CGRectGetHeight(_hudView.bounds)-_diameter*2)*0.5-5; 140 | } 141 | CGPoint center = CGPointMake(centerX, centerY); 142 | int i = 0; 143 | for (UIColor *color in colors) { 144 | CGFloat x = center.x + _diameter*2*sin(Degrees2Radians((2-i)*45)); 145 | CGFloat y = center.y + _diameter*2*cos(Degrees2Radians((2-i)*45)); 146 | CGRect rect = CGRectMake(x, y, self.diameter, self.diameter); 147 | CGMutablePathRef path = CGPathCreateMutable(); 148 | CGPathAddEllipseInRect(path, NULL, rect); 149 | CAShapeLayer *shapeLayer = [CAShapeLayer layer]; 150 | shapeLayer.fillColor = color.CGColor; 151 | shapeLayer.path = path; 152 | shapeLayer.edgeAntialiasingMask = kCALayerLeftEdge | kCALayerRightEdge | kCALayerTopEdge | kCALayerBottomEdge; 153 | shapeLayer.allowsEdgeAntialiasing = YES; 154 | CGPathRelease(path); 155 | [shapesArray addObject:shapeLayer]; 156 | i++; 157 | } 158 | } 159 | 160 | return shapesArray; 161 | } 162 | 163 | - (CGPoint)nextPointFromPoint:(CGPoint)point { 164 | CGPoint newPoint = CGPointZero; 165 | newPoint.x = point.x + _diameter*2; 166 | newPoint.y = point.y; 167 | return newPoint; 168 | } 169 | 170 | - (void)startAnimation { 171 | NSTimeInterval interval = 0; 172 | for (CALayer *layer in [self shapeLayers]) { 173 | [self performSelector:@selector(addAnimationToLayer:) 174 | withObject:layer 175 | afterDelay:interval 176 | inModes:@[NSRunLoopCommonModes]]; 177 | interval += 0.2; 178 | } 179 | } 180 | 181 | - (CALayer *)layerOfIndex:(NSInteger)index { 182 | return [_shapeLayers objectAtIndex:index]; 183 | } 184 | 185 | - (void)addAnimationToLayer:(CALayer *)layer { 186 | CABasicAnimation *fadeInAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"]; 187 | fadeInAnimation.fromValue = [NSNumber numberWithFloat:1.0]; 188 | fadeInAnimation.toValue = [NSNumber numberWithFloat:0.0]; 189 | fadeInAnimation.autoreverses = YES; 190 | fadeInAnimation.duration = 0.8f; 191 | fadeInAnimation.repeatCount = MAXFLOAT; 192 | [layer addAnimation:fadeInAnimation forKey:nil]; 193 | } 194 | 195 | #pragma mark ========== KVO ========== 196 | - (void)registerKVO { 197 | for (NSString *keyPath in [self observableKeypaths]) { 198 | [self addObserver:self 199 | forKeyPath:keyPath 200 | options:NSKeyValueObservingOptionNew 201 | context:NULL]; 202 | } 203 | } 204 | 205 | - (void)unregisterKVO { 206 | for (NSString *keyPath in [self observableKeypaths]) { 207 | [self removeObserver:self forKeyPath:keyPath]; 208 | } 209 | } 210 | 211 | - (NSArray *)observableKeypaths { 212 | return @[@"text", @"shape", @"type"]; 213 | } 214 | 215 | - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { 216 | if ([keyPath isEqualToString:@"text"]) { 217 | self.stringLabel.text = self.text; 218 | } else if ([keyPath isEqualToString:@"type"]) { 219 | if (_type == CLProgressHUDTypeDarkBackground) { 220 | self.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.8f]; 221 | _hudView.backgroundColor = [UIColor clearColor]; 222 | } else { 223 | self.backgroundColor = [UIColor clearColor]; 224 | _hudView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.8f]; 225 | } 226 | } else if ([keyPath isEqualToString:@"shape"]) { 227 | 228 | } 229 | [self setNeedsDisplay]; 230 | } 231 | 232 | #pragma mark - Show/Dismiss Method 233 | - (void)show { 234 | [self showWithAnimation:NO]; 235 | } 236 | 237 | - (void)showWithAnimation:(BOOL)animated { 238 | [self layout]; 239 | _animationIndex = 0; 240 | self.shapeLayers = [self createColorShapes:_ringsColor ofShape:_shape]; 241 | for (CAShapeLayer *layer in _shapeLayers) { 242 | [_hudView.layer addSublayer:layer]; 243 | } 244 | if (_type == CLProgressHUDTypeDarkBackground) { 245 | self.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.8f]; 246 | _hudView.backgroundColor = [UIColor clearColor]; 247 | } else { 248 | self.backgroundColor = [UIColor clearColor]; 249 | _hudView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.8f]; 250 | } 251 | if (animated) { 252 | [UIView animateWithDuration:0.5f 253 | animations:^{ 254 | self.alpha = 1.0f; 255 | } completion:^(BOOL finished) { 256 | [self startAnimation]; 257 | }]; 258 | } else { 259 | self.alpha = 1.0f; 260 | [self startAnimation]; 261 | } 262 | } 263 | 264 | - (void)showWithAnimation:(BOOL)animated duration:(NSTimeInterval)duration { 265 | [self showWithAnimation:animated]; 266 | [self performSelector:@selector(dismissWithAnimation:) withObject:[NSNumber numberWithBool:YES] afterDelay:duration]; 267 | } 268 | 269 | - (void)dismiss { 270 | [self removeFromSuperview]; 271 | } 272 | 273 | - (void)dismissWithAnimation:(BOOL)animated { 274 | if (animated) { 275 | [UIView animateWithDuration:0.5f 276 | animations:^{ 277 | self.alpha = 0.0; 278 | } completion:^(BOOL finished) { 279 | [self dismiss]; 280 | }]; 281 | } else { 282 | [self dismiss]; 283 | } 284 | } 285 | 286 | @end 287 | 288 | -------------------------------------------------------------------------------- /Example/CLProgressHUD.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3C8F5A3C932361F4B0238601 /* Pods_CLProgressHUD_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 202AF0C4F664D97FEE4854D9 /* Pods_CLProgressHUD_Tests.framework */; }; 11 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 12 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 13 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 14 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 15 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 16 | 6003F59E195388D20070C39A /* CLAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* CLAppDelegate.m */; }; 17 | 6003F5A7195388D20070C39A /* CLViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* CLViewController.m */; }; 18 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 19 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 20 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 21 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 22 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 23 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 24 | 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; }; 25 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; 26 | 939EECB9BA7A164CAD16F23A /* Pods_CLProgressHUD_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70DB365C95567921B0F5AB75 /* Pods_CLProgressHUD_Example.framework */; }; 27 | /* End PBXBuildFile section */ 28 | 29 | /* Begin PBXContainerItemProxy section */ 30 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = 6003F582195388D10070C39A /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = 6003F589195388D20070C39A; 35 | remoteInfo = CLProgressHUD; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 034A636685B962CB3CB5C9C0 /* Pods-CLProgressHUD_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CLProgressHUD_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests.debug.xcconfig"; sourceTree = ""; }; 41 | 202AF0C4F664D97FEE4854D9 /* Pods_CLProgressHUD_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CLProgressHUD_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 2848C1C5B4240203E823461C /* Pods-CLProgressHUD_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CLProgressHUD_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example.release.xcconfig"; sourceTree = ""; }; 43 | 290B490B00F4A968E65A491E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 44 | 4F4A374F10295100F0221849 /* CLProgressHUD.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CLProgressHUD.podspec; path = ../CLProgressHUD.podspec; sourceTree = ""; }; 45 | 6003F58A195388D20070C39A /* CLProgressHUD_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CLProgressHUD_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 47 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 48 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 49 | 6003F595195388D20070C39A /* CLProgressHUD-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "CLProgressHUD-Info.plist"; sourceTree = ""; }; 50 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 51 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 52 | 6003F59B195388D20070C39A /* CLProgressHUD-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CLProgressHUD-Prefix.pch"; sourceTree = ""; }; 53 | 6003F59C195388D20070C39A /* CLAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CLAppDelegate.h; sourceTree = ""; }; 54 | 6003F59D195388D20070C39A /* CLAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CLAppDelegate.m; sourceTree = ""; }; 55 | 6003F5A5195388D20070C39A /* CLViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CLViewController.h; sourceTree = ""; }; 56 | 6003F5A6195388D20070C39A /* CLViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CLViewController.m; sourceTree = ""; }; 57 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 58 | 6003F5AE195388D20070C39A /* CLProgressHUD_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CLProgressHUD_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 60 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 61 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 62 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 63 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 64 | 6175565105DD136417BB63F9 /* Pods-CLProgressHUD_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CLProgressHUD_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests.release.xcconfig"; sourceTree = ""; }; 65 | 70DB365C95567921B0F5AB75 /* Pods_CLProgressHUD_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CLProgressHUD_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 67 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 68 | 9E395B846B7899B23791DDBE /* Pods-CLProgressHUD_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CLProgressHUD_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example.debug.xcconfig"; sourceTree = ""; }; 69 | FCAA979BB3E23AE094DEB4B8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 70 | /* End PBXFileReference section */ 71 | 72 | /* Begin PBXFrameworksBuildPhase section */ 73 | 6003F587195388D20070C39A /* Frameworks */ = { 74 | isa = PBXFrameworksBuildPhase; 75 | buildActionMask = 2147483647; 76 | files = ( 77 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 78 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 79 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 80 | 939EECB9BA7A164CAD16F23A /* Pods_CLProgressHUD_Example.framework in Frameworks */, 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | 6003F5AB195388D20070C39A /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 89 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 90 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 91 | 3C8F5A3C932361F4B0238601 /* Pods_CLProgressHUD_Tests.framework in Frameworks */, 92 | ); 93 | runOnlyForDeploymentPostprocessing = 0; 94 | }; 95 | /* End PBXFrameworksBuildPhase section */ 96 | 97 | /* Begin PBXGroup section */ 98 | 6003F581195388D10070C39A = { 99 | isa = PBXGroup; 100 | children = ( 101 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 102 | 6003F593195388D20070C39A /* Example for CLProgressHUD */, 103 | 6003F5B5195388D20070C39A /* Tests */, 104 | 6003F58C195388D20070C39A /* Frameworks */, 105 | 6003F58B195388D20070C39A /* Products */, 106 | F7C12EAFCD5481EEED9F09D6 /* Pods */, 107 | ); 108 | sourceTree = ""; 109 | }; 110 | 6003F58B195388D20070C39A /* Products */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 6003F58A195388D20070C39A /* CLProgressHUD_Example.app */, 114 | 6003F5AE195388D20070C39A /* CLProgressHUD_Tests.xctest */, 115 | ); 116 | name = Products; 117 | sourceTree = ""; 118 | }; 119 | 6003F58C195388D20070C39A /* Frameworks */ = { 120 | isa = PBXGroup; 121 | children = ( 122 | 6003F58D195388D20070C39A /* Foundation.framework */, 123 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 124 | 6003F591195388D20070C39A /* UIKit.framework */, 125 | 6003F5AF195388D20070C39A /* XCTest.framework */, 126 | 70DB365C95567921B0F5AB75 /* Pods_CLProgressHUD_Example.framework */, 127 | 202AF0C4F664D97FEE4854D9 /* Pods_CLProgressHUD_Tests.framework */, 128 | ); 129 | name = Frameworks; 130 | sourceTree = ""; 131 | }; 132 | 6003F593195388D20070C39A /* Example for CLProgressHUD */ = { 133 | isa = PBXGroup; 134 | children = ( 135 | 6003F59C195388D20070C39A /* CLAppDelegate.h */, 136 | 6003F59D195388D20070C39A /* CLAppDelegate.m */, 137 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, 138 | 6003F5A5195388D20070C39A /* CLViewController.h */, 139 | 6003F5A6195388D20070C39A /* CLViewController.m */, 140 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */, 141 | 6003F5A8195388D20070C39A /* Images.xcassets */, 142 | 6003F594195388D20070C39A /* Supporting Files */, 143 | ); 144 | name = "Example for CLProgressHUD"; 145 | path = CLProgressHUD; 146 | sourceTree = ""; 147 | }; 148 | 6003F594195388D20070C39A /* Supporting Files */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | 6003F595195388D20070C39A /* CLProgressHUD-Info.plist */, 152 | 6003F596195388D20070C39A /* InfoPlist.strings */, 153 | 6003F599195388D20070C39A /* main.m */, 154 | 6003F59B195388D20070C39A /* CLProgressHUD-Prefix.pch */, 155 | ); 156 | name = "Supporting Files"; 157 | sourceTree = ""; 158 | }; 159 | 6003F5B5195388D20070C39A /* Tests */ = { 160 | isa = PBXGroup; 161 | children = ( 162 | 6003F5BB195388D20070C39A /* Tests.m */, 163 | 6003F5B6195388D20070C39A /* Supporting Files */, 164 | ); 165 | path = Tests; 166 | sourceTree = ""; 167 | }; 168 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 172 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 173 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 174 | ); 175 | name = "Supporting Files"; 176 | sourceTree = ""; 177 | }; 178 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 179 | isa = PBXGroup; 180 | children = ( 181 | 4F4A374F10295100F0221849 /* CLProgressHUD.podspec */, 182 | FCAA979BB3E23AE094DEB4B8 /* README.md */, 183 | 290B490B00F4A968E65A491E /* LICENSE */, 184 | ); 185 | name = "Podspec Metadata"; 186 | sourceTree = ""; 187 | }; 188 | F7C12EAFCD5481EEED9F09D6 /* Pods */ = { 189 | isa = PBXGroup; 190 | children = ( 191 | 9E395B846B7899B23791DDBE /* Pods-CLProgressHUD_Example.debug.xcconfig */, 192 | 2848C1C5B4240203E823461C /* Pods-CLProgressHUD_Example.release.xcconfig */, 193 | 034A636685B962CB3CB5C9C0 /* Pods-CLProgressHUD_Tests.debug.xcconfig */, 194 | 6175565105DD136417BB63F9 /* Pods-CLProgressHUD_Tests.release.xcconfig */, 195 | ); 196 | name = Pods; 197 | sourceTree = ""; 198 | }; 199 | /* End PBXGroup section */ 200 | 201 | /* Begin PBXNativeTarget section */ 202 | 6003F589195388D20070C39A /* CLProgressHUD_Example */ = { 203 | isa = PBXNativeTarget; 204 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "CLProgressHUD_Example" */; 205 | buildPhases = ( 206 | 705AC344E2F2422ED0A69E01 /* [CP] Check Pods Manifest.lock */, 207 | 6003F586195388D20070C39A /* Sources */, 208 | 6003F587195388D20070C39A /* Frameworks */, 209 | 6003F588195388D20070C39A /* Resources */, 210 | C228C5551974EEF2A16E5F17 /* [CP] Embed Pods Frameworks */, 211 | F67F8DB4122164B5F3A20200 /* [CP] Copy Pods Resources */, 212 | ); 213 | buildRules = ( 214 | ); 215 | dependencies = ( 216 | ); 217 | name = CLProgressHUD_Example; 218 | productName = CLProgressHUD; 219 | productReference = 6003F58A195388D20070C39A /* CLProgressHUD_Example.app */; 220 | productType = "com.apple.product-type.application"; 221 | }; 222 | 6003F5AD195388D20070C39A /* CLProgressHUD_Tests */ = { 223 | isa = PBXNativeTarget; 224 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "CLProgressHUD_Tests" */; 225 | buildPhases = ( 226 | A8E11DD78D67BCD447EEB5DE /* [CP] Check Pods Manifest.lock */, 227 | 6003F5AA195388D20070C39A /* Sources */, 228 | 6003F5AB195388D20070C39A /* Frameworks */, 229 | 6003F5AC195388D20070C39A /* Resources */, 230 | 088B65552290C49CA84DA5FC /* [CP] Embed Pods Frameworks */, 231 | A3C55884182D4FDBB9FDE8D7 /* [CP] Copy Pods Resources */, 232 | ); 233 | buildRules = ( 234 | ); 235 | dependencies = ( 236 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 237 | ); 238 | name = CLProgressHUD_Tests; 239 | productName = CLProgressHUDTests; 240 | productReference = 6003F5AE195388D20070C39A /* CLProgressHUD_Tests.xctest */; 241 | productType = "com.apple.product-type.bundle.unit-test"; 242 | }; 243 | /* End PBXNativeTarget section */ 244 | 245 | /* Begin PBXProject section */ 246 | 6003F582195388D10070C39A /* Project object */ = { 247 | isa = PBXProject; 248 | attributes = { 249 | CLASSPREFIX = CL; 250 | LastUpgradeCheck = 0720; 251 | ORGANIZATIONNAME = clee; 252 | TargetAttributes = { 253 | 6003F589195388D20070C39A = { 254 | DevelopmentTeam = LZ7KAN3586; 255 | ProvisioningStyle = Automatic; 256 | }; 257 | 6003F5AD195388D20070C39A = { 258 | TestTargetID = 6003F589195388D20070C39A; 259 | }; 260 | }; 261 | }; 262 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "CLProgressHUD" */; 263 | compatibilityVersion = "Xcode 3.2"; 264 | developmentRegion = English; 265 | hasScannedForEncodings = 0; 266 | knownRegions = ( 267 | en, 268 | Base, 269 | ); 270 | mainGroup = 6003F581195388D10070C39A; 271 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 272 | projectDirPath = ""; 273 | projectRoot = ""; 274 | targets = ( 275 | 6003F589195388D20070C39A /* CLProgressHUD_Example */, 276 | 6003F5AD195388D20070C39A /* CLProgressHUD_Tests */, 277 | ); 278 | }; 279 | /* End PBXProject section */ 280 | 281 | /* Begin PBXResourcesBuildPhase section */ 282 | 6003F588195388D20070C39A /* Resources */ = { 283 | isa = PBXResourcesBuildPhase; 284 | buildActionMask = 2147483647; 285 | files = ( 286 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, 287 | 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */, 288 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 289 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 290 | ); 291 | runOnlyForDeploymentPostprocessing = 0; 292 | }; 293 | 6003F5AC195388D20070C39A /* Resources */ = { 294 | isa = PBXResourcesBuildPhase; 295 | buildActionMask = 2147483647; 296 | files = ( 297 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 298 | ); 299 | runOnlyForDeploymentPostprocessing = 0; 300 | }; 301 | /* End PBXResourcesBuildPhase section */ 302 | 303 | /* Begin PBXShellScriptBuildPhase section */ 304 | 088B65552290C49CA84DA5FC /* [CP] Embed Pods Frameworks */ = { 305 | isa = PBXShellScriptBuildPhase; 306 | buildActionMask = 2147483647; 307 | files = ( 308 | ); 309 | inputPaths = ( 310 | ); 311 | name = "[CP] Embed Pods Frameworks"; 312 | outputPaths = ( 313 | ); 314 | runOnlyForDeploymentPostprocessing = 0; 315 | shellPath = /bin/sh; 316 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests-frameworks.sh\"\n"; 317 | showEnvVarsInLog = 0; 318 | }; 319 | 705AC344E2F2422ED0A69E01 /* [CP] Check Pods Manifest.lock */ = { 320 | isa = PBXShellScriptBuildPhase; 321 | buildActionMask = 2147483647; 322 | files = ( 323 | ); 324 | inputPaths = ( 325 | ); 326 | name = "[CP] Check Pods Manifest.lock"; 327 | outputPaths = ( 328 | ); 329 | runOnlyForDeploymentPostprocessing = 0; 330 | shellPath = /bin/sh; 331 | 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"; 332 | showEnvVarsInLog = 0; 333 | }; 334 | A3C55884182D4FDBB9FDE8D7 /* [CP] Copy Pods Resources */ = { 335 | isa = PBXShellScriptBuildPhase; 336 | buildActionMask = 2147483647; 337 | files = ( 338 | ); 339 | inputPaths = ( 340 | ); 341 | name = "[CP] Copy Pods Resources"; 342 | outputPaths = ( 343 | ); 344 | runOnlyForDeploymentPostprocessing = 0; 345 | shellPath = /bin/sh; 346 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests-resources.sh\"\n"; 347 | showEnvVarsInLog = 0; 348 | }; 349 | A8E11DD78D67BCD447EEB5DE /* [CP] Check Pods Manifest.lock */ = { 350 | isa = PBXShellScriptBuildPhase; 351 | buildActionMask = 2147483647; 352 | files = ( 353 | ); 354 | inputPaths = ( 355 | ); 356 | name = "[CP] Check Pods Manifest.lock"; 357 | outputPaths = ( 358 | ); 359 | runOnlyForDeploymentPostprocessing = 0; 360 | shellPath = /bin/sh; 361 | 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"; 362 | showEnvVarsInLog = 0; 363 | }; 364 | C228C5551974EEF2A16E5F17 /* [CP] Embed Pods Frameworks */ = { 365 | isa = PBXShellScriptBuildPhase; 366 | buildActionMask = 2147483647; 367 | files = ( 368 | ); 369 | inputPaths = ( 370 | ); 371 | name = "[CP] Embed Pods Frameworks"; 372 | outputPaths = ( 373 | ); 374 | runOnlyForDeploymentPostprocessing = 0; 375 | shellPath = /bin/sh; 376 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example-frameworks.sh\"\n"; 377 | showEnvVarsInLog = 0; 378 | }; 379 | F67F8DB4122164B5F3A20200 /* [CP] Copy Pods Resources */ = { 380 | isa = PBXShellScriptBuildPhase; 381 | buildActionMask = 2147483647; 382 | files = ( 383 | ); 384 | inputPaths = ( 385 | ); 386 | name = "[CP] Copy Pods Resources"; 387 | outputPaths = ( 388 | ); 389 | runOnlyForDeploymentPostprocessing = 0; 390 | shellPath = /bin/sh; 391 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example-resources.sh\"\n"; 392 | showEnvVarsInLog = 0; 393 | }; 394 | /* End PBXShellScriptBuildPhase section */ 395 | 396 | /* Begin PBXSourcesBuildPhase section */ 397 | 6003F586195388D20070C39A /* Sources */ = { 398 | isa = PBXSourcesBuildPhase; 399 | buildActionMask = 2147483647; 400 | files = ( 401 | 6003F59E195388D20070C39A /* CLAppDelegate.m in Sources */, 402 | 6003F5A7195388D20070C39A /* CLViewController.m in Sources */, 403 | 6003F59A195388D20070C39A /* main.m in Sources */, 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | 6003F5AA195388D20070C39A /* Sources */ = { 408 | isa = PBXSourcesBuildPhase; 409 | buildActionMask = 2147483647; 410 | files = ( 411 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 412 | ); 413 | runOnlyForDeploymentPostprocessing = 0; 414 | }; 415 | /* End PBXSourcesBuildPhase section */ 416 | 417 | /* Begin PBXTargetDependency section */ 418 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 419 | isa = PBXTargetDependency; 420 | target = 6003F589195388D20070C39A /* CLProgressHUD_Example */; 421 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 422 | }; 423 | /* End PBXTargetDependency section */ 424 | 425 | /* Begin PBXVariantGroup section */ 426 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 427 | isa = PBXVariantGroup; 428 | children = ( 429 | 6003F597195388D20070C39A /* en */, 430 | ); 431 | name = InfoPlist.strings; 432 | sourceTree = ""; 433 | }; 434 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 435 | isa = PBXVariantGroup; 436 | children = ( 437 | 6003F5B9195388D20070C39A /* en */, 438 | ); 439 | name = InfoPlist.strings; 440 | sourceTree = ""; 441 | }; 442 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = { 443 | isa = PBXVariantGroup; 444 | children = ( 445 | 71719F9E1E33DC2100824A3D /* Base */, 446 | ); 447 | name = LaunchScreen.storyboard; 448 | sourceTree = ""; 449 | }; 450 | /* End PBXVariantGroup section */ 451 | 452 | /* Begin XCBuildConfiguration section */ 453 | 6003F5BD195388D20070C39A /* Debug */ = { 454 | isa = XCBuildConfiguration; 455 | buildSettings = { 456 | ALWAYS_SEARCH_USER_PATHS = NO; 457 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 458 | CLANG_CXX_LIBRARY = "libc++"; 459 | CLANG_ENABLE_MODULES = YES; 460 | CLANG_ENABLE_OBJC_ARC = YES; 461 | CLANG_WARN_BOOL_CONVERSION = YES; 462 | CLANG_WARN_CONSTANT_CONVERSION = YES; 463 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 464 | CLANG_WARN_EMPTY_BODY = YES; 465 | CLANG_WARN_ENUM_CONVERSION = YES; 466 | CLANG_WARN_INT_CONVERSION = YES; 467 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 468 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 469 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 470 | COPY_PHASE_STRIP = NO; 471 | ENABLE_TESTABILITY = YES; 472 | GCC_C_LANGUAGE_STANDARD = gnu99; 473 | GCC_DYNAMIC_NO_PIC = NO; 474 | GCC_OPTIMIZATION_LEVEL = 0; 475 | GCC_PREPROCESSOR_DEFINITIONS = ( 476 | "DEBUG=1", 477 | "$(inherited)", 478 | ); 479 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 480 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 481 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 482 | GCC_WARN_UNDECLARED_SELECTOR = YES; 483 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 484 | GCC_WARN_UNUSED_FUNCTION = YES; 485 | GCC_WARN_UNUSED_VARIABLE = YES; 486 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 487 | ONLY_ACTIVE_ARCH = YES; 488 | SDKROOT = iphoneos; 489 | TARGETED_DEVICE_FAMILY = "1,2"; 490 | }; 491 | name = Debug; 492 | }; 493 | 6003F5BE195388D20070C39A /* Release */ = { 494 | isa = XCBuildConfiguration; 495 | buildSettings = { 496 | ALWAYS_SEARCH_USER_PATHS = NO; 497 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 498 | CLANG_CXX_LIBRARY = "libc++"; 499 | CLANG_ENABLE_MODULES = YES; 500 | CLANG_ENABLE_OBJC_ARC = YES; 501 | CLANG_WARN_BOOL_CONVERSION = YES; 502 | CLANG_WARN_CONSTANT_CONVERSION = YES; 503 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 504 | CLANG_WARN_EMPTY_BODY = YES; 505 | CLANG_WARN_ENUM_CONVERSION = YES; 506 | CLANG_WARN_INT_CONVERSION = YES; 507 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 508 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 509 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 510 | COPY_PHASE_STRIP = YES; 511 | ENABLE_NS_ASSERTIONS = NO; 512 | GCC_C_LANGUAGE_STANDARD = gnu99; 513 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 514 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 515 | GCC_WARN_UNDECLARED_SELECTOR = YES; 516 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 517 | GCC_WARN_UNUSED_FUNCTION = YES; 518 | GCC_WARN_UNUSED_VARIABLE = YES; 519 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 520 | SDKROOT = iphoneos; 521 | TARGETED_DEVICE_FAMILY = "1,2"; 522 | VALIDATE_PRODUCT = YES; 523 | }; 524 | name = Release; 525 | }; 526 | 6003F5C0195388D20070C39A /* Debug */ = { 527 | isa = XCBuildConfiguration; 528 | baseConfigurationReference = 9E395B846B7899B23791DDBE /* Pods-CLProgressHUD_Example.debug.xcconfig */; 529 | buildSettings = { 530 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 531 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 532 | DEVELOPMENT_TEAM = LZ7KAN3586; 533 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 534 | GCC_PREFIX_HEADER = "CLProgressHUD/CLProgressHUD-Prefix.pch"; 535 | INFOPLIST_FILE = "CLProgressHUD/CLProgressHUD-Info.plist"; 536 | MODULE_NAME = ExampleApp; 537 | PRODUCT_BUNDLE_IDENTIFIER = com.lixiang.CLProgressHUD; 538 | PRODUCT_NAME = "$(TARGET_NAME)"; 539 | PROVISIONING_PROFILE_SPECIFIER = ""; 540 | WRAPPER_EXTENSION = app; 541 | }; 542 | name = Debug; 543 | }; 544 | 6003F5C1195388D20070C39A /* Release */ = { 545 | isa = XCBuildConfiguration; 546 | baseConfigurationReference = 2848C1C5B4240203E823461C /* Pods-CLProgressHUD_Example.release.xcconfig */; 547 | buildSettings = { 548 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 549 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 550 | DEVELOPMENT_TEAM = LZ7KAN3586; 551 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 552 | GCC_PREFIX_HEADER = "CLProgressHUD/CLProgressHUD-Prefix.pch"; 553 | INFOPLIST_FILE = "CLProgressHUD/CLProgressHUD-Info.plist"; 554 | MODULE_NAME = ExampleApp; 555 | PRODUCT_BUNDLE_IDENTIFIER = com.lixiang.CLProgressHUD; 556 | PRODUCT_NAME = "$(TARGET_NAME)"; 557 | PROVISIONING_PROFILE_SPECIFIER = ""; 558 | WRAPPER_EXTENSION = app; 559 | }; 560 | name = Release; 561 | }; 562 | 6003F5C3195388D20070C39A /* Debug */ = { 563 | isa = XCBuildConfiguration; 564 | baseConfigurationReference = 034A636685B962CB3CB5C9C0 /* Pods-CLProgressHUD_Tests.debug.xcconfig */; 565 | buildSettings = { 566 | BUNDLE_LOADER = "$(TEST_HOST)"; 567 | FRAMEWORK_SEARCH_PATHS = ( 568 | "$(SDKROOT)/Developer/Library/Frameworks", 569 | "$(inherited)", 570 | "$(DEVELOPER_FRAMEWORKS_DIR)", 571 | ); 572 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 573 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 574 | GCC_PREPROCESSOR_DEFINITIONS = ( 575 | "DEBUG=1", 576 | "$(inherited)", 577 | ); 578 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 579 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 580 | PRODUCT_NAME = "$(TARGET_NAME)"; 581 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CLProgressHUD_Example.app/CLProgressHUD_Example"; 582 | WRAPPER_EXTENSION = xctest; 583 | }; 584 | name = Debug; 585 | }; 586 | 6003F5C4195388D20070C39A /* Release */ = { 587 | isa = XCBuildConfiguration; 588 | baseConfigurationReference = 6175565105DD136417BB63F9 /* Pods-CLProgressHUD_Tests.release.xcconfig */; 589 | buildSettings = { 590 | BUNDLE_LOADER = "$(TEST_HOST)"; 591 | FRAMEWORK_SEARCH_PATHS = ( 592 | "$(SDKROOT)/Developer/Library/Frameworks", 593 | "$(inherited)", 594 | "$(DEVELOPER_FRAMEWORKS_DIR)", 595 | ); 596 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 597 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 598 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 599 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 600 | PRODUCT_NAME = "$(TARGET_NAME)"; 601 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CLProgressHUD_Example.app/CLProgressHUD_Example"; 602 | WRAPPER_EXTENSION = xctest; 603 | }; 604 | name = Release; 605 | }; 606 | /* End XCBuildConfiguration section */ 607 | 608 | /* Begin XCConfigurationList section */ 609 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "CLProgressHUD" */ = { 610 | isa = XCConfigurationList; 611 | buildConfigurations = ( 612 | 6003F5BD195388D20070C39A /* Debug */, 613 | 6003F5BE195388D20070C39A /* Release */, 614 | ); 615 | defaultConfigurationIsVisible = 0; 616 | defaultConfigurationName = Release; 617 | }; 618 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "CLProgressHUD_Example" */ = { 619 | isa = XCConfigurationList; 620 | buildConfigurations = ( 621 | 6003F5C0195388D20070C39A /* Debug */, 622 | 6003F5C1195388D20070C39A /* Release */, 623 | ); 624 | defaultConfigurationIsVisible = 0; 625 | defaultConfigurationName = Release; 626 | }; 627 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "CLProgressHUD_Tests" */ = { 628 | isa = XCConfigurationList; 629 | buildConfigurations = ( 630 | 6003F5C3195388D20070C39A /* Debug */, 631 | 6003F5C4195388D20070C39A /* Release */, 632 | ); 633 | defaultConfigurationIsVisible = 0; 634 | defaultConfigurationName = Release; 635 | }; 636 | /* End XCConfigurationList section */ 637 | }; 638 | rootObject = 6003F582195388D10070C39A /* Project object */; 639 | } 640 | -------------------------------------------------------------------------------- /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 | 2B9E1F700319F5478575AD719E229321 /* Pods-CLProgressHUD_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A633C686218F74204B275C793D03B4F /* Pods-CLProgressHUD_Tests-dummy.m */; }; 11 | 31BE442E67C9B5E62D8A9C1F65BE363C /* Pods-CLProgressHUD_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B1ED19B0A1BC21F964B1067DC4B54B3 /* Pods-CLProgressHUD_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 3B2898A8EB91206744937204B3A683EB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 13 | 3FC48CA53FE4973DF398BC6CD79A98CF /* Pods-CLProgressHUD_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CCDA3E6CC73DC42A8CA00F8383416AE /* Pods-CLProgressHUD_Example-dummy.m */; }; 14 | 47DC42DD45ADBF71C7BE7713E359E353 /* Pods-CLProgressHUD_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B5DB481E042372553462F746453DC1 /* Pods-CLProgressHUD_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 7337769B027A9DAB4FCC85A40AFD25AD /* CLProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = C70BCC90BE519646770B24BB21AD28F2 /* CLProgressHUD.m */; }; 16 | 9B0035D5E3CA4D2978D39329165DC657 /* CLProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9082EF81D0F6AEF7F085117EC976E0 /* CLProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | C38E8753EA8F62C82E4A761B46F15FEC /* CLProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4B12E5DE75C2EF6D44B3FCF75D8EE83 /* CLProgressHUD-dummy.m */; }; 18 | DFF44ED8E46920A2AFF3BF8282A6B7CE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 19 | EA78B33A6E512D32B30539D799F4B218 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 20 | FD6217F3B0F45FCBDE66A3DC69836532 /* CLProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = CE4BBB42A4C75474E5819B9043D24457 /* CLProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | BFBAA8AFC9972F83EDA2255E7603D1EC /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = EAFB9E02263DCBA2B5F14837BD7E1473; 29 | remoteInfo = CLProgressHUD; 30 | }; 31 | /* End PBXContainerItemProxy section */ 32 | 33 | /* Begin PBXFileReference section */ 34 | 04006209B7B15FB0610B9038181A679E /* Pods-CLProgressHUD_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CLProgressHUD_Tests-acknowledgements.markdown"; sourceTree = ""; }; 35 | 08ECCFF066DFF0596B826C1A7C948475 /* Pods-CLProgressHUD_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CLProgressHUD_Example.debug.xcconfig"; sourceTree = ""; }; 36 | 2005F4BF810C328AFEC1BA3C2B850D50 /* Pods-CLProgressHUD_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CLProgressHUD_Tests-frameworks.sh"; sourceTree = ""; }; 37 | 2A633C686218F74204B275C793D03B4F /* Pods-CLProgressHUD_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CLProgressHUD_Tests-dummy.m"; sourceTree = ""; }; 38 | 3CCDA3E6CC73DC42A8CA00F8383416AE /* Pods-CLProgressHUD_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CLProgressHUD_Example-dummy.m"; sourceTree = ""; }; 39 | 3DB62787768E3B44A43F57FE15DEBBFE /* Pods-CLProgressHUD_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CLProgressHUD_Example-frameworks.sh"; sourceTree = ""; }; 40 | 4EF02693D61A5841B57BC5DC067A0598 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 41 | 5D9082EF81D0F6AEF7F085117EC976E0 /* CLProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLProgressHUD-umbrella.h"; sourceTree = ""; }; 42 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 43 | 71BA8B2F8133CFC8C12E09B5D9A40B9B /* Pods-CLProgressHUD_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CLProgressHUD_Tests.release.xcconfig"; sourceTree = ""; }; 44 | 72B5DB481E042372553462F746453DC1 /* Pods-CLProgressHUD_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CLProgressHUD_Tests-umbrella.h"; sourceTree = ""; }; 45 | 8BEFB940037EB43FD402AF2971B8AE04 /* Pods-CLProgressHUD_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CLProgressHUD_Example.release.xcconfig"; sourceTree = ""; }; 46 | 8E5AB02AC031AE81A3FF0A73F26F7D29 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | 92E24118E6F9F7039D39176EA1A12442 /* Pods-CLProgressHUD_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-CLProgressHUD_Tests.modulemap"; sourceTree = ""; }; 48 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 49 | 93FAB05F491604CAEF87F746B45C3A67 /* Pods-CLProgressHUD_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CLProgressHUD_Tests.debug.xcconfig"; sourceTree = ""; }; 50 | 94D879287E2848A30D8D858D0A2D576D /* CLProgressHUD.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CLProgressHUD.xcconfig; sourceTree = ""; }; 51 | 98B998E0DC68F30C5EAC3CD25ED47738 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 52 | 9B1ED19B0A1BC21F964B1067DC4B54B3 /* Pods-CLProgressHUD_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CLProgressHUD_Example-umbrella.h"; sourceTree = ""; }; 53 | 9D5A1F3AC29C036ED143EC5D478D7EFC /* Pods_CLProgressHUD_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CLProgressHUD_Tests.framework; path = "Pods-CLProgressHUD_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | 9FE16E1E33A83C5F04233D2503CD3E4D /* Pods-CLProgressHUD_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CLProgressHUD_Example-acknowledgements.markdown"; sourceTree = ""; }; 55 | B10F89283BD0465EF0F1C99F97D3B1D1 /* Pods-CLProgressHUD_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CLProgressHUD_Tests-resources.sh"; sourceTree = ""; }; 56 | B24C71B87BA7FCE914ED08BE929902CD /* Pods-CLProgressHUD_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-CLProgressHUD_Example.modulemap"; sourceTree = ""; }; 57 | C4B12E5DE75C2EF6D44B3FCF75D8EE83 /* CLProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CLProgressHUD-dummy.m"; sourceTree = ""; }; 58 | C70BCC90BE519646770B24BB21AD28F2 /* CLProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CLProgressHUD.m; sourceTree = ""; }; 59 | CC1B426B5C6789F5644019882539B8AC /* CLProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = CLProgressHUD.modulemap; sourceTree = ""; }; 60 | CE4BBB42A4C75474E5819B9043D24457 /* CLProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CLProgressHUD.h; sourceTree = ""; }; 61 | D414C79038284F8A1EBEBA57025404D1 /* CLProgressHUD.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CLProgressHUD.framework; path = CLProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 62 | DA44A1DAED7EB0822CD98AE7C808D51B /* Pods-CLProgressHUD_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CLProgressHUD_Tests-acknowledgements.plist"; sourceTree = ""; }; 63 | DC269257FB70BCE9A5415BE45B0414BD /* Pods-CLProgressHUD_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CLProgressHUD_Example-resources.sh"; sourceTree = ""; }; 64 | DCA0E6529E8E6B19AFE953C39359A367 /* Pods-CLProgressHUD_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CLProgressHUD_Example-acknowledgements.plist"; sourceTree = ""; }; 65 | ED070E003FFF3D2216D43226439EBC08 /* CLProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CLProgressHUD-prefix.pch"; sourceTree = ""; }; 66 | EF81AEC4C78D18FCBA8CBBF66F156AA9 /* Pods_CLProgressHUD_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CLProgressHUD_Example.framework; path = "Pods-CLProgressHUD_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 67 | /* End PBXFileReference section */ 68 | 69 | /* Begin PBXFrameworksBuildPhase section */ 70 | 3DAA9E9D7F81C705F1933CCACD588E20 /* Frameworks */ = { 71 | isa = PBXFrameworksBuildPhase; 72 | buildActionMask = 2147483647; 73 | files = ( 74 | EA78B33A6E512D32B30539D799F4B218 /* Foundation.framework in Frameworks */, 75 | ); 76 | runOnlyForDeploymentPostprocessing = 0; 77 | }; 78 | B3B407C167DA4753E5DB0C5261AB55E3 /* Frameworks */ = { 79 | isa = PBXFrameworksBuildPhase; 80 | buildActionMask = 2147483647; 81 | files = ( 82 | DFF44ED8E46920A2AFF3BF8282A6B7CE /* Foundation.framework in Frameworks */, 83 | ); 84 | runOnlyForDeploymentPostprocessing = 0; 85 | }; 86 | F0345F9AB50DAE1DE63ACE590113267B /* Frameworks */ = { 87 | isa = PBXFrameworksBuildPhase; 88 | buildActionMask = 2147483647; 89 | files = ( 90 | 3B2898A8EB91206744937204B3A683EB /* Foundation.framework in Frameworks */, 91 | ); 92 | runOnlyForDeploymentPostprocessing = 0; 93 | }; 94 | /* End PBXFrameworksBuildPhase section */ 95 | 96 | /* Begin PBXGroup section */ 97 | 0436DA8BBAC9EEC1D0FC3889983B5888 /* Pods-CLProgressHUD_Tests */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | 98B998E0DC68F30C5EAC3CD25ED47738 /* Info.plist */, 101 | 92E24118E6F9F7039D39176EA1A12442 /* Pods-CLProgressHUD_Tests.modulemap */, 102 | 04006209B7B15FB0610B9038181A679E /* Pods-CLProgressHUD_Tests-acknowledgements.markdown */, 103 | DA44A1DAED7EB0822CD98AE7C808D51B /* Pods-CLProgressHUD_Tests-acknowledgements.plist */, 104 | 2A633C686218F74204B275C793D03B4F /* Pods-CLProgressHUD_Tests-dummy.m */, 105 | 2005F4BF810C328AFEC1BA3C2B850D50 /* Pods-CLProgressHUD_Tests-frameworks.sh */, 106 | B10F89283BD0465EF0F1C99F97D3B1D1 /* Pods-CLProgressHUD_Tests-resources.sh */, 107 | 72B5DB481E042372553462F746453DC1 /* Pods-CLProgressHUD_Tests-umbrella.h */, 108 | 93FAB05F491604CAEF87F746B45C3A67 /* Pods-CLProgressHUD_Tests.debug.xcconfig */, 109 | 71BA8B2F8133CFC8C12E09B5D9A40B9B /* Pods-CLProgressHUD_Tests.release.xcconfig */, 110 | ); 111 | name = "Pods-CLProgressHUD_Tests"; 112 | path = "Target Support Files/Pods-CLProgressHUD_Tests"; 113 | sourceTree = ""; 114 | }; 115 | 08002E03DBF4FFD8DABDA156578FFEBD /* Pods-CLProgressHUD_Example */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 8E5AB02AC031AE81A3FF0A73F26F7D29 /* Info.plist */, 119 | B24C71B87BA7FCE914ED08BE929902CD /* Pods-CLProgressHUD_Example.modulemap */, 120 | 9FE16E1E33A83C5F04233D2503CD3E4D /* Pods-CLProgressHUD_Example-acknowledgements.markdown */, 121 | DCA0E6529E8E6B19AFE953C39359A367 /* Pods-CLProgressHUD_Example-acknowledgements.plist */, 122 | 3CCDA3E6CC73DC42A8CA00F8383416AE /* Pods-CLProgressHUD_Example-dummy.m */, 123 | 3DB62787768E3B44A43F57FE15DEBBFE /* Pods-CLProgressHUD_Example-frameworks.sh */, 124 | DC269257FB70BCE9A5415BE45B0414BD /* Pods-CLProgressHUD_Example-resources.sh */, 125 | 9B1ED19B0A1BC21F964B1067DC4B54B3 /* Pods-CLProgressHUD_Example-umbrella.h */, 126 | 08ECCFF066DFF0596B826C1A7C948475 /* Pods-CLProgressHUD_Example.debug.xcconfig */, 127 | 8BEFB940037EB43FD402AF2971B8AE04 /* Pods-CLProgressHUD_Example.release.xcconfig */, 128 | ); 129 | name = "Pods-CLProgressHUD_Example"; 130 | path = "Target Support Files/Pods-CLProgressHUD_Example"; 131 | sourceTree = ""; 132 | }; 133 | 2ED100CA99F192A5A3FA0E54B478771A /* Targets Support Files */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 08002E03DBF4FFD8DABDA156578FFEBD /* Pods-CLProgressHUD_Example */, 137 | 0436DA8BBAC9EEC1D0FC3889983B5888 /* Pods-CLProgressHUD_Tests */, 138 | ); 139 | name = "Targets Support Files"; 140 | sourceTree = ""; 141 | }; 142 | 3CEF8CB07FDC55CB04A48A434DD056D2 /* Development Pods */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | F79B10298FBF31F29EC9DC661CE7348E /* CLProgressHUD */, 146 | ); 147 | name = "Development Pods"; 148 | sourceTree = ""; 149 | }; 150 | 7DB346D0F39D3F0E887471402A8071AB = { 151 | isa = PBXGroup; 152 | children = ( 153 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 154 | 3CEF8CB07FDC55CB04A48A434DD056D2 /* Development Pods */, 155 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 156 | F967D6044D149F63688C8A1B7C1BAF7F /* Products */, 157 | 2ED100CA99F192A5A3FA0E54B478771A /* Targets Support Files */, 158 | ); 159 | sourceTree = ""; 160 | }; 161 | 81707625261D930256F9BD40BD452448 /* Support Files */ = { 162 | isa = PBXGroup; 163 | children = ( 164 | CC1B426B5C6789F5644019882539B8AC /* CLProgressHUD.modulemap */, 165 | 94D879287E2848A30D8D858D0A2D576D /* CLProgressHUD.xcconfig */, 166 | C4B12E5DE75C2EF6D44B3FCF75D8EE83 /* CLProgressHUD-dummy.m */, 167 | ED070E003FFF3D2216D43226439EBC08 /* CLProgressHUD-prefix.pch */, 168 | 5D9082EF81D0F6AEF7F085117EC976E0 /* CLProgressHUD-umbrella.h */, 169 | 4EF02693D61A5841B57BC5DC067A0598 /* Info.plist */, 170 | ); 171 | name = "Support Files"; 172 | path = "Example/Pods/Target Support Files/CLProgressHUD"; 173 | sourceTree = ""; 174 | }; 175 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 176 | isa = PBXGroup; 177 | children = ( 178 | D35AF013A5F0BAD4F32504907A52519E /* iOS */, 179 | ); 180 | name = Frameworks; 181 | sourceTree = ""; 182 | }; 183 | D35AF013A5F0BAD4F32504907A52519E /* iOS */ = { 184 | isa = PBXGroup; 185 | children = ( 186 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */, 187 | ); 188 | name = iOS; 189 | sourceTree = ""; 190 | }; 191 | DE78CFBE9A5FD48C3AB8BA0381729D80 /* Classes */ = { 192 | isa = PBXGroup; 193 | children = ( 194 | CE4BBB42A4C75474E5819B9043D24457 /* CLProgressHUD.h */, 195 | C70BCC90BE519646770B24BB21AD28F2 /* CLProgressHUD.m */, 196 | ); 197 | name = Classes; 198 | path = Classes; 199 | sourceTree = ""; 200 | }; 201 | F79B10298FBF31F29EC9DC661CE7348E /* CLProgressHUD */ = { 202 | isa = PBXGroup; 203 | children = ( 204 | DE78CFBE9A5FD48C3AB8BA0381729D80 /* Classes */, 205 | 81707625261D930256F9BD40BD452448 /* Support Files */, 206 | ); 207 | name = CLProgressHUD; 208 | path = ../..; 209 | sourceTree = ""; 210 | }; 211 | F967D6044D149F63688C8A1B7C1BAF7F /* Products */ = { 212 | isa = PBXGroup; 213 | children = ( 214 | D414C79038284F8A1EBEBA57025404D1 /* CLProgressHUD.framework */, 215 | EF81AEC4C78D18FCBA8CBBF66F156AA9 /* Pods_CLProgressHUD_Example.framework */, 216 | 9D5A1F3AC29C036ED143EC5D478D7EFC /* Pods_CLProgressHUD_Tests.framework */, 217 | ); 218 | name = Products; 219 | sourceTree = ""; 220 | }; 221 | /* End PBXGroup section */ 222 | 223 | /* Begin PBXHeadersBuildPhase section */ 224 | 011C9787F6FCFBD245BB0273B5A9B0D3 /* Headers */ = { 225 | isa = PBXHeadersBuildPhase; 226 | buildActionMask = 2147483647; 227 | files = ( 228 | 9B0035D5E3CA4D2978D39329165DC657 /* CLProgressHUD-umbrella.h in Headers */, 229 | FD6217F3B0F45FCBDE66A3DC69836532 /* CLProgressHUD.h in Headers */, 230 | ); 231 | runOnlyForDeploymentPostprocessing = 0; 232 | }; 233 | 7A00A6C66F586AAAB1906CA5FC9B4582 /* Headers */ = { 234 | isa = PBXHeadersBuildPhase; 235 | buildActionMask = 2147483647; 236 | files = ( 237 | 31BE442E67C9B5E62D8A9C1F65BE363C /* Pods-CLProgressHUD_Example-umbrella.h in Headers */, 238 | ); 239 | runOnlyForDeploymentPostprocessing = 0; 240 | }; 241 | C62D887A0E5C0019D7EB42375516E42A /* Headers */ = { 242 | isa = PBXHeadersBuildPhase; 243 | buildActionMask = 2147483647; 244 | files = ( 245 | 47DC42DD45ADBF71C7BE7713E359E353 /* Pods-CLProgressHUD_Tests-umbrella.h in Headers */, 246 | ); 247 | runOnlyForDeploymentPostprocessing = 0; 248 | }; 249 | /* End PBXHeadersBuildPhase section */ 250 | 251 | /* Begin PBXNativeTarget section */ 252 | 56ED0DF318FCD8FCF547D1FE254A6138 /* Pods-CLProgressHUD_Tests */ = { 253 | isa = PBXNativeTarget; 254 | buildConfigurationList = D819FDD29D54F5C46EBCA4E76F990213 /* Build configuration list for PBXNativeTarget "Pods-CLProgressHUD_Tests" */; 255 | buildPhases = ( 256 | D92CE747521C9F2025EDD22735F68206 /* Sources */, 257 | 3DAA9E9D7F81C705F1933CCACD588E20 /* Frameworks */, 258 | C62D887A0E5C0019D7EB42375516E42A /* Headers */, 259 | ); 260 | buildRules = ( 261 | ); 262 | dependencies = ( 263 | ); 264 | name = "Pods-CLProgressHUD_Tests"; 265 | productName = "Pods-CLProgressHUD_Tests"; 266 | productReference = 9D5A1F3AC29C036ED143EC5D478D7EFC /* Pods_CLProgressHUD_Tests.framework */; 267 | productType = "com.apple.product-type.framework"; 268 | }; 269 | E5669E408ED90EC6A4E30E9382125C38 /* Pods-CLProgressHUD_Example */ = { 270 | isa = PBXNativeTarget; 271 | buildConfigurationList = 5DCF773CA620FBC99503E2A69624F2AB /* Build configuration list for PBXNativeTarget "Pods-CLProgressHUD_Example" */; 272 | buildPhases = ( 273 | 738ADA055EEB692455E46795CF3E4730 /* Sources */, 274 | F0345F9AB50DAE1DE63ACE590113267B /* Frameworks */, 275 | 7A00A6C66F586AAAB1906CA5FC9B4582 /* Headers */, 276 | ); 277 | buildRules = ( 278 | ); 279 | dependencies = ( 280 | DA35A17DE323C6CE65C87DD3ABC2CD02 /* PBXTargetDependency */, 281 | ); 282 | name = "Pods-CLProgressHUD_Example"; 283 | productName = "Pods-CLProgressHUD_Example"; 284 | productReference = EF81AEC4C78D18FCBA8CBBF66F156AA9 /* Pods_CLProgressHUD_Example.framework */; 285 | productType = "com.apple.product-type.framework"; 286 | }; 287 | EAFB9E02263DCBA2B5F14837BD7E1473 /* CLProgressHUD */ = { 288 | isa = PBXNativeTarget; 289 | buildConfigurationList = C4A23435DCB9A08A32B0DC715FA335A8 /* Build configuration list for PBXNativeTarget "CLProgressHUD" */; 290 | buildPhases = ( 291 | E888F8945FEB7BED39DFFBA985B1DA0C /* Sources */, 292 | B3B407C167DA4753E5DB0C5261AB55E3 /* Frameworks */, 293 | 011C9787F6FCFBD245BB0273B5A9B0D3 /* Headers */, 294 | ); 295 | buildRules = ( 296 | ); 297 | dependencies = ( 298 | ); 299 | name = CLProgressHUD; 300 | productName = CLProgressHUD; 301 | productReference = D414C79038284F8A1EBEBA57025404D1 /* CLProgressHUD.framework */; 302 | productType = "com.apple.product-type.framework"; 303 | }; 304 | /* End PBXNativeTarget section */ 305 | 306 | /* Begin PBXProject section */ 307 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 308 | isa = PBXProject; 309 | attributes = { 310 | LastSwiftUpdateCheck = 0830; 311 | LastUpgradeCheck = 0700; 312 | }; 313 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 314 | compatibilityVersion = "Xcode 3.2"; 315 | developmentRegion = English; 316 | hasScannedForEncodings = 0; 317 | knownRegions = ( 318 | en, 319 | ); 320 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 321 | productRefGroup = F967D6044D149F63688C8A1B7C1BAF7F /* Products */; 322 | projectDirPath = ""; 323 | projectRoot = ""; 324 | targets = ( 325 | EAFB9E02263DCBA2B5F14837BD7E1473 /* CLProgressHUD */, 326 | E5669E408ED90EC6A4E30E9382125C38 /* Pods-CLProgressHUD_Example */, 327 | 56ED0DF318FCD8FCF547D1FE254A6138 /* Pods-CLProgressHUD_Tests */, 328 | ); 329 | }; 330 | /* End PBXProject section */ 331 | 332 | /* Begin PBXSourcesBuildPhase section */ 333 | 738ADA055EEB692455E46795CF3E4730 /* Sources */ = { 334 | isa = PBXSourcesBuildPhase; 335 | buildActionMask = 2147483647; 336 | files = ( 337 | 3FC48CA53FE4973DF398BC6CD79A98CF /* Pods-CLProgressHUD_Example-dummy.m in Sources */, 338 | ); 339 | runOnlyForDeploymentPostprocessing = 0; 340 | }; 341 | D92CE747521C9F2025EDD22735F68206 /* Sources */ = { 342 | isa = PBXSourcesBuildPhase; 343 | buildActionMask = 2147483647; 344 | files = ( 345 | 2B9E1F700319F5478575AD719E229321 /* Pods-CLProgressHUD_Tests-dummy.m in Sources */, 346 | ); 347 | runOnlyForDeploymentPostprocessing = 0; 348 | }; 349 | E888F8945FEB7BED39DFFBA985B1DA0C /* Sources */ = { 350 | isa = PBXSourcesBuildPhase; 351 | buildActionMask = 2147483647; 352 | files = ( 353 | C38E8753EA8F62C82E4A761B46F15FEC /* CLProgressHUD-dummy.m in Sources */, 354 | 7337769B027A9DAB4FCC85A40AFD25AD /* CLProgressHUD.m in Sources */, 355 | ); 356 | runOnlyForDeploymentPostprocessing = 0; 357 | }; 358 | /* End PBXSourcesBuildPhase section */ 359 | 360 | /* Begin PBXTargetDependency section */ 361 | DA35A17DE323C6CE65C87DD3ABC2CD02 /* PBXTargetDependency */ = { 362 | isa = PBXTargetDependency; 363 | name = CLProgressHUD; 364 | target = EAFB9E02263DCBA2B5F14837BD7E1473 /* CLProgressHUD */; 365 | targetProxy = BFBAA8AFC9972F83EDA2255E7603D1EC /* PBXContainerItemProxy */; 366 | }; 367 | /* End PBXTargetDependency section */ 368 | 369 | /* Begin XCBuildConfiguration section */ 370 | 08BDC7CB9AE15788F1028B8265BBC8D1 /* Release */ = { 371 | isa = XCBuildConfiguration; 372 | baseConfigurationReference = 8BEFB940037EB43FD402AF2971B8AE04 /* Pods-CLProgressHUD_Example.release.xcconfig */; 373 | buildSettings = { 374 | CODE_SIGN_IDENTITY = ""; 375 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 376 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 377 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 378 | CURRENT_PROJECT_VERSION = 1; 379 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 380 | DEFINES_MODULE = YES; 381 | DYLIB_COMPATIBILITY_VERSION = 1; 382 | DYLIB_CURRENT_VERSION = 1; 383 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 384 | ENABLE_STRICT_OBJC_MSGSEND = YES; 385 | GCC_NO_COMMON_BLOCKS = YES; 386 | INFOPLIST_FILE = "Target Support Files/Pods-CLProgressHUD_Example/Info.plist"; 387 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 388 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 389 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 390 | MACH_O_TYPE = staticlib; 391 | MODULEMAP_FILE = "Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example.modulemap"; 392 | MTL_ENABLE_DEBUG_INFO = NO; 393 | OTHER_LDFLAGS = ""; 394 | OTHER_LIBTOOLFLAGS = ""; 395 | PODS_ROOT = "$(SRCROOT)"; 396 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 397 | PRODUCT_NAME = Pods_CLProgressHUD_Example; 398 | SDKROOT = iphoneos; 399 | SKIP_INSTALL = YES; 400 | TARGETED_DEVICE_FAMILY = "1,2"; 401 | VERSIONING_SYSTEM = "apple-generic"; 402 | VERSION_INFO_PREFIX = ""; 403 | }; 404 | name = Release; 405 | }; 406 | 187F8AEE0BD537C99540DE71318E383B /* Debug */ = { 407 | isa = XCBuildConfiguration; 408 | baseConfigurationReference = 94D879287E2848A30D8D858D0A2D576D /* CLProgressHUD.xcconfig */; 409 | buildSettings = { 410 | CODE_SIGN_IDENTITY = ""; 411 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 412 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 413 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 414 | CURRENT_PROJECT_VERSION = 1; 415 | DEBUG_INFORMATION_FORMAT = dwarf; 416 | DEFINES_MODULE = YES; 417 | DYLIB_COMPATIBILITY_VERSION = 1; 418 | DYLIB_CURRENT_VERSION = 1; 419 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 420 | ENABLE_STRICT_OBJC_MSGSEND = YES; 421 | GCC_NO_COMMON_BLOCKS = YES; 422 | GCC_PREFIX_HEADER = "Target Support Files/CLProgressHUD/CLProgressHUD-prefix.pch"; 423 | INFOPLIST_FILE = "Target Support Files/CLProgressHUD/Info.plist"; 424 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 425 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 426 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 427 | MODULEMAP_FILE = "Target Support Files/CLProgressHUD/CLProgressHUD.modulemap"; 428 | MTL_ENABLE_DEBUG_INFO = YES; 429 | PRODUCT_NAME = CLProgressHUD; 430 | SDKROOT = iphoneos; 431 | SKIP_INSTALL = YES; 432 | TARGETED_DEVICE_FAMILY = "1,2"; 433 | VERSIONING_SYSTEM = "apple-generic"; 434 | VERSION_INFO_PREFIX = ""; 435 | }; 436 | name = Debug; 437 | }; 438 | 345CC476DF4A7516DBD2220CF5035FF3 /* Debug */ = { 439 | isa = XCBuildConfiguration; 440 | buildSettings = { 441 | ALWAYS_SEARCH_USER_PATHS = NO; 442 | CLANG_ANALYZER_NONNULL = YES; 443 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; 444 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 445 | CLANG_CXX_LIBRARY = "libc++"; 446 | CLANG_ENABLE_MODULES = YES; 447 | CLANG_ENABLE_OBJC_ARC = YES; 448 | CLANG_WARN_BOOL_CONVERSION = YES; 449 | CLANG_WARN_CONSTANT_CONVERSION = YES; 450 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 451 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 452 | CLANG_WARN_EMPTY_BODY = YES; 453 | CLANG_WARN_ENUM_CONVERSION = YES; 454 | CLANG_WARN_INFINITE_RECURSION = YES; 455 | CLANG_WARN_INT_CONVERSION = YES; 456 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 457 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 458 | CLANG_WARN_UNREACHABLE_CODE = YES; 459 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 460 | CODE_SIGNING_REQUIRED = NO; 461 | COPY_PHASE_STRIP = NO; 462 | ENABLE_TESTABILITY = YES; 463 | GCC_C_LANGUAGE_STANDARD = gnu99; 464 | GCC_DYNAMIC_NO_PIC = NO; 465 | GCC_OPTIMIZATION_LEVEL = 0; 466 | GCC_PREPROCESSOR_DEFINITIONS = ( 467 | "POD_CONFIGURATION_DEBUG=1", 468 | "DEBUG=1", 469 | "$(inherited)", 470 | ); 471 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 472 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 473 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 474 | GCC_WARN_UNDECLARED_SELECTOR = YES; 475 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 476 | GCC_WARN_UNUSED_FUNCTION = YES; 477 | GCC_WARN_UNUSED_VARIABLE = YES; 478 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 479 | ONLY_ACTIVE_ARCH = YES; 480 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 481 | STRIP_INSTALLED_PRODUCT = NO; 482 | SYMROOT = "${SRCROOT}/../build"; 483 | }; 484 | name = Debug; 485 | }; 486 | 5B68EC9D90D7FF580D0C6A0038B45B5C /* Debug */ = { 487 | isa = XCBuildConfiguration; 488 | baseConfigurationReference = 08ECCFF066DFF0596B826C1A7C948475 /* Pods-CLProgressHUD_Example.debug.xcconfig */; 489 | buildSettings = { 490 | CODE_SIGN_IDENTITY = ""; 491 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 492 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 493 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 494 | CURRENT_PROJECT_VERSION = 1; 495 | DEBUG_INFORMATION_FORMAT = dwarf; 496 | DEFINES_MODULE = YES; 497 | DYLIB_COMPATIBILITY_VERSION = 1; 498 | DYLIB_CURRENT_VERSION = 1; 499 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 500 | ENABLE_STRICT_OBJC_MSGSEND = YES; 501 | GCC_NO_COMMON_BLOCKS = YES; 502 | INFOPLIST_FILE = "Target Support Files/Pods-CLProgressHUD_Example/Info.plist"; 503 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 504 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 505 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 506 | MACH_O_TYPE = staticlib; 507 | MODULEMAP_FILE = "Target Support Files/Pods-CLProgressHUD_Example/Pods-CLProgressHUD_Example.modulemap"; 508 | MTL_ENABLE_DEBUG_INFO = YES; 509 | OTHER_LDFLAGS = ""; 510 | OTHER_LIBTOOLFLAGS = ""; 511 | PODS_ROOT = "$(SRCROOT)"; 512 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 513 | PRODUCT_NAME = Pods_CLProgressHUD_Example; 514 | SDKROOT = iphoneos; 515 | SKIP_INSTALL = YES; 516 | TARGETED_DEVICE_FAMILY = "1,2"; 517 | VERSIONING_SYSTEM = "apple-generic"; 518 | VERSION_INFO_PREFIX = ""; 519 | }; 520 | name = Debug; 521 | }; 522 | 717E77604BFBB04BEAF56608A1CB2EDE /* Release */ = { 523 | isa = XCBuildConfiguration; 524 | buildSettings = { 525 | ALWAYS_SEARCH_USER_PATHS = NO; 526 | CLANG_ANALYZER_NONNULL = YES; 527 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; 528 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 529 | CLANG_CXX_LIBRARY = "libc++"; 530 | CLANG_ENABLE_MODULES = YES; 531 | CLANG_ENABLE_OBJC_ARC = YES; 532 | CLANG_WARN_BOOL_CONVERSION = YES; 533 | CLANG_WARN_CONSTANT_CONVERSION = YES; 534 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 535 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 536 | CLANG_WARN_EMPTY_BODY = YES; 537 | CLANG_WARN_ENUM_CONVERSION = YES; 538 | CLANG_WARN_INFINITE_RECURSION = YES; 539 | CLANG_WARN_INT_CONVERSION = YES; 540 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 541 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 542 | CLANG_WARN_UNREACHABLE_CODE = YES; 543 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 544 | CODE_SIGNING_REQUIRED = NO; 545 | COPY_PHASE_STRIP = YES; 546 | ENABLE_NS_ASSERTIONS = NO; 547 | GCC_C_LANGUAGE_STANDARD = gnu99; 548 | GCC_PREPROCESSOR_DEFINITIONS = ( 549 | "POD_CONFIGURATION_RELEASE=1", 550 | "$(inherited)", 551 | ); 552 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 553 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 554 | GCC_WARN_UNDECLARED_SELECTOR = YES; 555 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 556 | GCC_WARN_UNUSED_FUNCTION = YES; 557 | GCC_WARN_UNUSED_VARIABLE = YES; 558 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 559 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 560 | STRIP_INSTALLED_PRODUCT = NO; 561 | SYMROOT = "${SRCROOT}/../build"; 562 | VALIDATE_PRODUCT = YES; 563 | }; 564 | name = Release; 565 | }; 566 | EC7542A86ED9932ECAB829B1055DEDF8 /* Release */ = { 567 | isa = XCBuildConfiguration; 568 | baseConfigurationReference = 94D879287E2848A30D8D858D0A2D576D /* CLProgressHUD.xcconfig */; 569 | buildSettings = { 570 | CODE_SIGN_IDENTITY = ""; 571 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 572 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 573 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 574 | CURRENT_PROJECT_VERSION = 1; 575 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 576 | DEFINES_MODULE = YES; 577 | DYLIB_COMPATIBILITY_VERSION = 1; 578 | DYLIB_CURRENT_VERSION = 1; 579 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 580 | ENABLE_STRICT_OBJC_MSGSEND = YES; 581 | GCC_NO_COMMON_BLOCKS = YES; 582 | GCC_PREFIX_HEADER = "Target Support Files/CLProgressHUD/CLProgressHUD-prefix.pch"; 583 | INFOPLIST_FILE = "Target Support Files/CLProgressHUD/Info.plist"; 584 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 585 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 586 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 587 | MODULEMAP_FILE = "Target Support Files/CLProgressHUD/CLProgressHUD.modulemap"; 588 | MTL_ENABLE_DEBUG_INFO = NO; 589 | PRODUCT_NAME = CLProgressHUD; 590 | SDKROOT = iphoneos; 591 | SKIP_INSTALL = YES; 592 | TARGETED_DEVICE_FAMILY = "1,2"; 593 | VERSIONING_SYSTEM = "apple-generic"; 594 | VERSION_INFO_PREFIX = ""; 595 | }; 596 | name = Release; 597 | }; 598 | F047D50EA8104E51EAAF88A06CFC6B38 /* Debug */ = { 599 | isa = XCBuildConfiguration; 600 | baseConfigurationReference = 93FAB05F491604CAEF87F746B45C3A67 /* Pods-CLProgressHUD_Tests.debug.xcconfig */; 601 | buildSettings = { 602 | CODE_SIGN_IDENTITY = ""; 603 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 604 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 605 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 606 | CURRENT_PROJECT_VERSION = 1; 607 | DEBUG_INFORMATION_FORMAT = dwarf; 608 | DEFINES_MODULE = YES; 609 | DYLIB_COMPATIBILITY_VERSION = 1; 610 | DYLIB_CURRENT_VERSION = 1; 611 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 612 | ENABLE_STRICT_OBJC_MSGSEND = YES; 613 | GCC_NO_COMMON_BLOCKS = YES; 614 | INFOPLIST_FILE = "Target Support Files/Pods-CLProgressHUD_Tests/Info.plist"; 615 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 616 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 617 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 618 | MACH_O_TYPE = staticlib; 619 | MODULEMAP_FILE = "Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests.modulemap"; 620 | MTL_ENABLE_DEBUG_INFO = YES; 621 | OTHER_LDFLAGS = ""; 622 | OTHER_LIBTOOLFLAGS = ""; 623 | PODS_ROOT = "$(SRCROOT)"; 624 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 625 | PRODUCT_NAME = Pods_CLProgressHUD_Tests; 626 | SDKROOT = iphoneos; 627 | SKIP_INSTALL = YES; 628 | TARGETED_DEVICE_FAMILY = "1,2"; 629 | VERSIONING_SYSTEM = "apple-generic"; 630 | VERSION_INFO_PREFIX = ""; 631 | }; 632 | name = Debug; 633 | }; 634 | FAC3B51E6729D528F1C6D109AB1706DB /* Release */ = { 635 | isa = XCBuildConfiguration; 636 | baseConfigurationReference = 71BA8B2F8133CFC8C12E09B5D9A40B9B /* Pods-CLProgressHUD_Tests.release.xcconfig */; 637 | buildSettings = { 638 | CODE_SIGN_IDENTITY = ""; 639 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 640 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 641 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 642 | CURRENT_PROJECT_VERSION = 1; 643 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 644 | DEFINES_MODULE = YES; 645 | DYLIB_COMPATIBILITY_VERSION = 1; 646 | DYLIB_CURRENT_VERSION = 1; 647 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 648 | ENABLE_STRICT_OBJC_MSGSEND = YES; 649 | GCC_NO_COMMON_BLOCKS = YES; 650 | INFOPLIST_FILE = "Target Support Files/Pods-CLProgressHUD_Tests/Info.plist"; 651 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 652 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 653 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 654 | MACH_O_TYPE = staticlib; 655 | MODULEMAP_FILE = "Target Support Files/Pods-CLProgressHUD_Tests/Pods-CLProgressHUD_Tests.modulemap"; 656 | MTL_ENABLE_DEBUG_INFO = NO; 657 | OTHER_LDFLAGS = ""; 658 | OTHER_LIBTOOLFLAGS = ""; 659 | PODS_ROOT = "$(SRCROOT)"; 660 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 661 | PRODUCT_NAME = Pods_CLProgressHUD_Tests; 662 | SDKROOT = iphoneos; 663 | SKIP_INSTALL = YES; 664 | TARGETED_DEVICE_FAMILY = "1,2"; 665 | VERSIONING_SYSTEM = "apple-generic"; 666 | VERSION_INFO_PREFIX = ""; 667 | }; 668 | name = Release; 669 | }; 670 | /* End XCBuildConfiguration section */ 671 | 672 | /* Begin XCConfigurationList section */ 673 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 674 | isa = XCConfigurationList; 675 | buildConfigurations = ( 676 | 345CC476DF4A7516DBD2220CF5035FF3 /* Debug */, 677 | 717E77604BFBB04BEAF56608A1CB2EDE /* Release */, 678 | ); 679 | defaultConfigurationIsVisible = 0; 680 | defaultConfigurationName = Release; 681 | }; 682 | 5DCF773CA620FBC99503E2A69624F2AB /* Build configuration list for PBXNativeTarget "Pods-CLProgressHUD_Example" */ = { 683 | isa = XCConfigurationList; 684 | buildConfigurations = ( 685 | 5B68EC9D90D7FF580D0C6A0038B45B5C /* Debug */, 686 | 08BDC7CB9AE15788F1028B8265BBC8D1 /* Release */, 687 | ); 688 | defaultConfigurationIsVisible = 0; 689 | defaultConfigurationName = Release; 690 | }; 691 | C4A23435DCB9A08A32B0DC715FA335A8 /* Build configuration list for PBXNativeTarget "CLProgressHUD" */ = { 692 | isa = XCConfigurationList; 693 | buildConfigurations = ( 694 | 187F8AEE0BD537C99540DE71318E383B /* Debug */, 695 | EC7542A86ED9932ECAB829B1055DEDF8 /* Release */, 696 | ); 697 | defaultConfigurationIsVisible = 0; 698 | defaultConfigurationName = Release; 699 | }; 700 | D819FDD29D54F5C46EBCA4E76F990213 /* Build configuration list for PBXNativeTarget "Pods-CLProgressHUD_Tests" */ = { 701 | isa = XCConfigurationList; 702 | buildConfigurations = ( 703 | F047D50EA8104E51EAAF88A06CFC6B38 /* Debug */, 704 | FAC3B51E6729D528F1C6D109AB1706DB /* Release */, 705 | ); 706 | defaultConfigurationIsVisible = 0; 707 | defaultConfigurationName = Release; 708 | }; 709 | /* End XCConfigurationList section */ 710 | }; 711 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 712 | } 713 | --------------------------------------------------------------------------------