├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ └── SCCatWaitingHUD │ │ │ ├── GlobalHeader.h │ │ │ ├── SCCatWaitingHUD.h │ │ │ └── UIViewExt.h │ ├── Local Podspecs │ │ └── SCCatWaitingHUD.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SCCatWaitingHUD.xcscheme │ └── Target Support Files │ │ ├── Pods-SCCatWaitingHUD_Example │ │ ├── Info.plist │ │ ├── Pods-SCCatWaitingHUD_Example-acknowledgements.markdown │ │ ├── Pods-SCCatWaitingHUD_Example-acknowledgements.plist │ │ ├── Pods-SCCatWaitingHUD_Example-dummy.m │ │ ├── Pods-SCCatWaitingHUD_Example-frameworks.sh │ │ ├── Pods-SCCatWaitingHUD_Example-resources.sh │ │ ├── Pods-SCCatWaitingHUD_Example-umbrella.h │ │ ├── Pods-SCCatWaitingHUD_Example.debug.xcconfig │ │ ├── Pods-SCCatWaitingHUD_Example.modulemap │ │ └── Pods-SCCatWaitingHUD_Example.release.xcconfig │ │ ├── Pods-SCCatWaitingHUD_Tests │ │ ├── Info.plist │ │ ├── Pods-SCCatWaitingHUD_Tests-acknowledgements.markdown │ │ ├── Pods-SCCatWaitingHUD_Tests-acknowledgements.plist │ │ ├── Pods-SCCatWaitingHUD_Tests-dummy.m │ │ ├── Pods-SCCatWaitingHUD_Tests-frameworks.sh │ │ ├── Pods-SCCatWaitingHUD_Tests-resources.sh │ │ ├── Pods-SCCatWaitingHUD_Tests-umbrella.h │ │ ├── Pods-SCCatWaitingHUD_Tests.debug.xcconfig │ │ ├── Pods-SCCatWaitingHUD_Tests.modulemap │ │ └── Pods-SCCatWaitingHUD_Tests.release.xcconfig │ │ └── SCCatWaitingHUD │ │ ├── Info.plist │ │ ├── SCCatWaitingHUD-dummy.m │ │ ├── SCCatWaitingHUD-prefix.pch │ │ ├── SCCatWaitingHUD-umbrella.h │ │ ├── SCCatWaitingHUD.modulemap │ │ └── SCCatWaitingHUD.xcconfig ├── SCCatWaitingHUD.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SCCatWaitingHUD-Example.xcscheme ├── SCCatWaitingHUD.xcworkspace │ └── contents.xcworkspacedata ├── SCCatWaitingHUD │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon-Spotlight-40.png │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ └── Icon-Spotlight-40@3x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ └── test.imageset │ │ │ ├── Contents.json │ │ │ └── IMG_0063.png │ ├── Main.storyboard │ ├── SCAppDelegate.h │ ├── SCAppDelegate.m │ ├── SCCatWaitingHUD-Info.plist │ ├── SCCatWaitingHUD-Prefix.pch │ ├── SCViewController.h │ ├── SCViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ ├── .gitkeep │ ├── MAO@2x.png │ └── mouse@2x.png └── Classes │ ├── .gitkeep │ ├── SCCatWaitingHUD.h │ ├── SCCatWaitingHUD.m │ ├── UIViewExt.h │ └── UIViewExt.m ├── Preview ├── preview.gif └── preview.png ├── README.md ├── SCCatWaitingHUD.podspec └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | 24 | # CocoaPods 25 | # 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | #Pods/ 31 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | language: objective-c 6 | # cache: cocoapods 7 | # podfile: Example/Podfile 8 | # before_install: 9 | # - gem install cocoapods # Since Travis is not always on latest version 10 | # - pod install --project-directory=Example 11 | script: 12 | - set -o pipefail && xcodebuild test -workspace Example/SCCatWaitingHUD.xcworkspace -scheme SCCatWaitingHUD-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty 13 | - pod lib lint 14 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | use_frameworks! 3 | 4 | target 'SCCatWaitingHUD_Example', :exclusive => true do 5 | pod "SCCatWaitingHUD", :path => "../" 6 | end 7 | 8 | target 'SCCatWaitingHUD_Tests', :exclusive => true do 9 | pod "SCCatWaitingHUD", :path => "../" 10 | 11 | 12 | end 13 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SCCatWaitingHUD (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SCCatWaitingHUD (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SCCatWaitingHUD: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | SCCatWaitingHUD: 6c04466299a7124e5418730f913877e4a11faeed 13 | 14 | COCOAPODS: 0.39.0 15 | -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/SCCatWaitingHUD/GlobalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/GlobalHeader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/SCCatWaitingHUD/SCCatWaitingHUD.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/SCCatWaitingHUD.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/SCCatWaitingHUD/UIViewExt.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIViewExt.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SCCatWaitingHUD.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SCCatWaitingHUD", 3 | "version": "0.1.0", 4 | "summary": "Cute and simple waiting HUD indicator on iOS", 5 | "description": "Cute and simple waiting HUD indicator on iOS.", 6 | "homepage": "https://github.com/SergioChan/SCCatWaitingHUD", 7 | "license": "MIT", 8 | "authors": { 9 | "SergioChan": "yuheng9211@qq.com" 10 | }, 11 | "source": { 12 | "git": "https://github.com/SergioChan/SCCatWaitingHUD.git", 13 | "tag": "0.1.0" 14 | }, 15 | "platforms": { 16 | "ios": "8.0" 17 | }, 18 | "requires_arc": true, 19 | "source_files": "Pod/Classes/**/*", 20 | "resource_bundles": { 21 | "SCCatWaitingHUD": [ 22 | "Pod/Assets/*.png" 23 | ] 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SCCatWaitingHUD (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SCCatWaitingHUD (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SCCatWaitingHUD: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | SCCatWaitingHUD: 6c04466299a7124e5418730f913877e4a11faeed 13 | 14 | COCOAPODS: 0.39.0 15 | -------------------------------------------------------------------------------- /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 | 1CE80565C0A8D53F251F14669B8632E3 /* SCCatWaitingHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CFE2615B154491D0423CFB3D86FE00CC /* SCCatWaitingHUD.bundle */; }; 11 | 1D5D1650D94709745C74AABBCB5D1D8F /* Pods-SCCatWaitingHUD_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5DE32A8915F408EB95B6EAD37BEE2E /* Pods-SCCatWaitingHUD_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 29D3C9C458ECE9A2D2A0940744ADFA66 /* SCCatWaitingHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BF2FBB2E26FEB133CD8A24A2B6AE11 /* SCCatWaitingHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 310F477D1FA5FA6BE6D99D5C54BB4FEE /* SCCatWaitingHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 5307D88090AAC36D62DB42C92AE14E10 /* SCCatWaitingHUD.m */; }; 14 | 4932E93DA688F7954D3C4F9913430634 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; 15 | 4A66C4A884C9A6E2D67B873EF481F7C9 /* Pods-SCCatWaitingHUD_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FBDEB9FEB15F6550AA5F682B768A85BD /* Pods-SCCatWaitingHUD_Tests-dummy.m */; }; 16 | 4D9EB61E0082A7BE150A127007A35492 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; 17 | 528A2C5955392708D5D528D57F276F7B /* UIViewExt.m in Sources */ = {isa = PBXBuildFile; fileRef = C7612335BF702C230DB59EB87FE2A550 /* UIViewExt.m */; }; 18 | 6CCF77374BB4C0A351C5677A8AE1C43F /* MAO@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 997FB919773F481DC2A76C26250C5F22 /* MAO@2x.png */; }; 19 | 7E5C952D81ADBBFD2A77740EB4551745 /* mouse@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8A62ED0FB2C4D55497BEE4414BE80C15 /* mouse@2x.png */; }; 20 | 8061C71E6DC5E2278B3CFA9FADA27965 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; 21 | A332DAB0974DA471AD31643DB81B5F96 /* UIViewExt.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EAE670C075E70C4CF15BA8283102263 /* UIViewExt.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | BFB0B67E0763E76ED4F0F875E93BD828 /* Pods-SCCatWaitingHUD_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F9F663145F5508FAD22E0D2FB9A18272 /* Pods-SCCatWaitingHUD_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 23 | C53B00DB0175CEAD29F547435A7638F2 /* Pods-SCCatWaitingHUD_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DFE9FB4078E31FCA38264A17D1B57C4 /* Pods-SCCatWaitingHUD_Example-dummy.m */; }; 24 | CFCC1377397187D5E861CA18F2560DAD /* SCCatWaitingHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBAB929814E6602DF0B4B6996AB7AE4 /* SCCatWaitingHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 25 | E42CD59A9260CC6C039F9FA8CF5354CE /* SCCatWaitingHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA8CBD621ED5349F9003218E295350E8 /* SCCatWaitingHUD-dummy.m */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | AA2D508CE47D5793D65CD8C2CFFAEA9C /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 14215550D887F9EE504E78ADC7160A5E; 34 | remoteInfo = SCCatWaitingHUD; 35 | }; 36 | BF930C57FD7FE1BE17629D37FC08B320 /* PBXContainerItemProxy */ = { 37 | isa = PBXContainerItemProxy; 38 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 39 | proxyType = 1; 40 | remoteGlobalIDString = 14215550D887F9EE504E78ADC7160A5E; 41 | remoteInfo = SCCatWaitingHUD; 42 | }; 43 | CED878A0B5F55AC2F107BBFD39F98C67 /* PBXContainerItemProxy */ = { 44 | isa = PBXContainerItemProxy; 45 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 46 | proxyType = 1; 47 | remoteGlobalIDString = 46A6E0B09F391644AA9416B4B438555C; 48 | remoteInfo = "SCCatWaitingHUD-SCCatWaitingHUD"; 49 | }; 50 | /* End PBXContainerItemProxy section */ 51 | 52 | /* Begin PBXFileReference section */ 53 | 038B9A05CB32AE43705C351587BBFE90 /* SCCatWaitingHUD.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SCCatWaitingHUD.xcconfig; sourceTree = ""; }; 54 | 06CC19924105191A85D5149388EDB5B2 /* Pods-SCCatWaitingHUD_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SCCatWaitingHUD_Tests-frameworks.sh"; sourceTree = ""; }; 55 | 0B5DE32A8915F408EB95B6EAD37BEE2E /* Pods-SCCatWaitingHUD_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SCCatWaitingHUD_Example-umbrella.h"; sourceTree = ""; }; 56 | 1809F57BC9389151509A156892151CD7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 57 | 1C36F15238F0239D0061EB3E78DFF64E /* Pods-SCCatWaitingHUD_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SCCatWaitingHUD_Tests-acknowledgements.markdown"; sourceTree = ""; }; 58 | 37BF2FBB2E26FEB133CD8A24A2B6AE11 /* SCCatWaitingHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SCCatWaitingHUD.h; sourceTree = ""; }; 59 | 3B7DF8ED6E6CAFFCCBF5A6E03D353017 /* Pods-SCCatWaitingHUD_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SCCatWaitingHUD_Example-acknowledgements.plist"; sourceTree = ""; }; 60 | 3E1246C71E4AE4597380CA931EE3094F /* Pods-SCCatWaitingHUD_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SCCatWaitingHUD_Example.release.xcconfig"; sourceTree = ""; }; 61 | 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 62 | 415156AF599C3BDDB7FBA68656F1EA09 /* Pods-SCCatWaitingHUD_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SCCatWaitingHUD_Tests.debug.xcconfig"; sourceTree = ""; }; 63 | 4EAE670C075E70C4CF15BA8283102263 /* UIViewExt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UIViewExt.h; sourceTree = ""; }; 64 | 5307D88090AAC36D62DB42C92AE14E10 /* SCCatWaitingHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SCCatWaitingHUD.m; sourceTree = ""; }; 65 | 546110F3B084A2C0C5DE60CAFA890811 /* Pods-SCCatWaitingHUD_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SCCatWaitingHUD_Example.debug.xcconfig"; sourceTree = ""; }; 66 | 679F8CFFBF2B2DE08E2954DFCA693CDE /* SCCatWaitingHUD.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SCCatWaitingHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 67 | 7F48BAFDD989A14D1C61168C1BF38062 /* SCCatWaitingHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SCCatWaitingHUD-prefix.pch"; sourceTree = ""; }; 68 | 85994D86A211A6EB707B85C21001C919 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 69 | 87FD927E37385C0E1B65F8BE01FE2361 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 70 | 88E8881867B33B0ADBDD774AB330EB56 /* Pods-SCCatWaitingHUD_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SCCatWaitingHUD_Tests-acknowledgements.plist"; sourceTree = ""; }; 71 | 8A62ED0FB2C4D55497BEE4414BE80C15 /* mouse@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "mouse@2x.png"; sourceTree = ""; }; 72 | 8DFE9FB4078E31FCA38264A17D1B57C4 /* Pods-SCCatWaitingHUD_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SCCatWaitingHUD_Example-dummy.m"; sourceTree = ""; }; 73 | 997FB919773F481DC2A76C26250C5F22 /* MAO@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "MAO@2x.png"; sourceTree = ""; }; 74 | 9FBAB929814E6602DF0B4B6996AB7AE4 /* SCCatWaitingHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SCCatWaitingHUD-umbrella.h"; sourceTree = ""; }; 75 | A8A6BF9DD59C598F51F07BAF88ED7F22 /* Pods-SCCatWaitingHUD_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SCCatWaitingHUD_Tests.release.xcconfig"; sourceTree = ""; }; 76 | BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 77 | BA8CBD621ED5349F9003218E295350E8 /* SCCatWaitingHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SCCatWaitingHUD-dummy.m"; sourceTree = ""; }; 78 | BF6C6FD1E8A53D620FC3805B4D066FDB /* Pods_SCCatWaitingHUD_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SCCatWaitingHUD_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 79 | C7612335BF702C230DB59EB87FE2A550 /* UIViewExt.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UIViewExt.m; sourceTree = ""; }; 80 | C89D02CF2DA42480DAFC3E0FABEA013B /* Pods-SCCatWaitingHUD_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SCCatWaitingHUD_Example-frameworks.sh"; sourceTree = ""; }; 81 | CFE2615B154491D0423CFB3D86FE00CC /* SCCatWaitingHUD.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SCCatWaitingHUD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 82 | DB87BF7F85E339A5D65C0CC82448D835 /* Pods-SCCatWaitingHUD_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-SCCatWaitingHUD_Tests.modulemap"; sourceTree = ""; }; 83 | DFA47C370F489FBDC8FA5B07768F6173 /* SCCatWaitingHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SCCatWaitingHUD.modulemap; sourceTree = ""; }; 84 | EA1724477B0E902AA25B05AD7ECBEB41 /* Pods-SCCatWaitingHUD_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SCCatWaitingHUD_Example-resources.sh"; sourceTree = ""; }; 85 | EA3C4F8AAFABD9761541915108C5DEA0 /* Pods-SCCatWaitingHUD_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SCCatWaitingHUD_Tests-resources.sh"; sourceTree = ""; }; 86 | ED973116732E429EE796B234E535EDFE /* Pods-SCCatWaitingHUD_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SCCatWaitingHUD_Example-acknowledgements.markdown"; sourceTree = ""; }; 87 | EF3ACEFF284927306F05B1F607C65C71 /* Pods_SCCatWaitingHUD_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SCCatWaitingHUD_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 88 | F1F269BBDA14E325FCC83D8F76C21736 /* Pods-SCCatWaitingHUD_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-SCCatWaitingHUD_Example.modulemap"; sourceTree = ""; }; 89 | F9F663145F5508FAD22E0D2FB9A18272 /* Pods-SCCatWaitingHUD_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SCCatWaitingHUD_Tests-umbrella.h"; sourceTree = ""; }; 90 | FBDEB9FEB15F6550AA5F682B768A85BD /* Pods-SCCatWaitingHUD_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SCCatWaitingHUD_Tests-dummy.m"; sourceTree = ""; }; 91 | /* End PBXFileReference section */ 92 | 93 | /* Begin PBXFrameworksBuildPhase section */ 94 | 05D927738665351112356E1D47B0C071 /* Frameworks */ = { 95 | isa = PBXFrameworksBuildPhase; 96 | buildActionMask = 2147483647; 97 | files = ( 98 | 8061C71E6DC5E2278B3CFA9FADA27965 /* Foundation.framework in Frameworks */, 99 | ); 100 | runOnlyForDeploymentPostprocessing = 0; 101 | }; 102 | 3AEE801F0411AAEBD5C4B9B6F2173A4F /* Frameworks */ = { 103 | isa = PBXFrameworksBuildPhase; 104 | buildActionMask = 2147483647; 105 | files = ( 106 | ); 107 | runOnlyForDeploymentPostprocessing = 0; 108 | }; 109 | B9EC6B8A628B8C83195DEB5108726185 /* Frameworks */ = { 110 | isa = PBXFrameworksBuildPhase; 111 | buildActionMask = 2147483647; 112 | files = ( 113 | 4932E93DA688F7954D3C4F9913430634 /* Foundation.framework in Frameworks */, 114 | ); 115 | runOnlyForDeploymentPostprocessing = 0; 116 | }; 117 | BC3E7F6F85B945E8DC15029EEF0759D3 /* Frameworks */ = { 118 | isa = PBXFrameworksBuildPhase; 119 | buildActionMask = 2147483647; 120 | files = ( 121 | 4D9EB61E0082A7BE150A127007A35492 /* Foundation.framework in Frameworks */, 122 | ); 123 | runOnlyForDeploymentPostprocessing = 0; 124 | }; 125 | /* End PBXFrameworksBuildPhase section */ 126 | 127 | /* Begin PBXGroup section */ 128 | 09AA24A2A8D94F70A07422B74FD4C7B9 /* Pods-SCCatWaitingHUD_Tests */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 1809F57BC9389151509A156892151CD7 /* Info.plist */, 132 | DB87BF7F85E339A5D65C0CC82448D835 /* Pods-SCCatWaitingHUD_Tests.modulemap */, 133 | 1C36F15238F0239D0061EB3E78DFF64E /* Pods-SCCatWaitingHUD_Tests-acknowledgements.markdown */, 134 | 88E8881867B33B0ADBDD774AB330EB56 /* Pods-SCCatWaitingHUD_Tests-acknowledgements.plist */, 135 | FBDEB9FEB15F6550AA5F682B768A85BD /* Pods-SCCatWaitingHUD_Tests-dummy.m */, 136 | 06CC19924105191A85D5149388EDB5B2 /* Pods-SCCatWaitingHUD_Tests-frameworks.sh */, 137 | EA3C4F8AAFABD9761541915108C5DEA0 /* Pods-SCCatWaitingHUD_Tests-resources.sh */, 138 | F9F663145F5508FAD22E0D2FB9A18272 /* Pods-SCCatWaitingHUD_Tests-umbrella.h */, 139 | 415156AF599C3BDDB7FBA68656F1EA09 /* Pods-SCCatWaitingHUD_Tests.debug.xcconfig */, 140 | A8A6BF9DD59C598F51F07BAF88ED7F22 /* Pods-SCCatWaitingHUD_Tests.release.xcconfig */, 141 | ); 142 | name = "Pods-SCCatWaitingHUD_Tests"; 143 | path = "Target Support Files/Pods-SCCatWaitingHUD_Tests"; 144 | sourceTree = ""; 145 | }; 146 | 16EDFA2B11198A3067D4792ABB9A4DE2 /* Products */ = { 147 | isa = PBXGroup; 148 | children = ( 149 | BF6C6FD1E8A53D620FC3805B4D066FDB /* Pods_SCCatWaitingHUD_Example.framework */, 150 | EF3ACEFF284927306F05B1F607C65C71 /* Pods_SCCatWaitingHUD_Tests.framework */, 151 | CFE2615B154491D0423CFB3D86FE00CC /* SCCatWaitingHUD.bundle */, 152 | 679F8CFFBF2B2DE08E2954DFCA693CDE /* SCCatWaitingHUD.framework */, 153 | ); 154 | name = Products; 155 | sourceTree = ""; 156 | }; 157 | 4A692D9AD73745BEB0C76AC697B7DDF0 /* Assets */ = { 158 | isa = PBXGroup; 159 | children = ( 160 | 997FB919773F481DC2A76C26250C5F22 /* MAO@2x.png */, 161 | 8A62ED0FB2C4D55497BEE4414BE80C15 /* mouse@2x.png */, 162 | ); 163 | path = Assets; 164 | sourceTree = ""; 165 | }; 166 | 66F7792D5A9D642A54081F97E1B149C8 /* Pods-SCCatWaitingHUD_Example */ = { 167 | isa = PBXGroup; 168 | children = ( 169 | 85994D86A211A6EB707B85C21001C919 /* Info.plist */, 170 | F1F269BBDA14E325FCC83D8F76C21736 /* Pods-SCCatWaitingHUD_Example.modulemap */, 171 | ED973116732E429EE796B234E535EDFE /* Pods-SCCatWaitingHUD_Example-acknowledgements.markdown */, 172 | 3B7DF8ED6E6CAFFCCBF5A6E03D353017 /* Pods-SCCatWaitingHUD_Example-acknowledgements.plist */, 173 | 8DFE9FB4078E31FCA38264A17D1B57C4 /* Pods-SCCatWaitingHUD_Example-dummy.m */, 174 | C89D02CF2DA42480DAFC3E0FABEA013B /* Pods-SCCatWaitingHUD_Example-frameworks.sh */, 175 | EA1724477B0E902AA25B05AD7ECBEB41 /* Pods-SCCatWaitingHUD_Example-resources.sh */, 176 | 0B5DE32A8915F408EB95B6EAD37BEE2E /* Pods-SCCatWaitingHUD_Example-umbrella.h */, 177 | 546110F3B084A2C0C5DE60CAFA890811 /* Pods-SCCatWaitingHUD_Example.debug.xcconfig */, 178 | 3E1246C71E4AE4597380CA931EE3094F /* Pods-SCCatWaitingHUD_Example.release.xcconfig */, 179 | ); 180 | name = "Pods-SCCatWaitingHUD_Example"; 181 | path = "Target Support Files/Pods-SCCatWaitingHUD_Example"; 182 | sourceTree = ""; 183 | }; 184 | 79EF14FADADE8F639956274E3CF958E3 /* Pod */ = { 185 | isa = PBXGroup; 186 | children = ( 187 | E0D781EA757E5E699F1FC6B23AC863CE /* Classes */, 188 | ); 189 | path = Pod; 190 | sourceTree = ""; 191 | }; 192 | 7DB346D0F39D3F0E887471402A8071AB = { 193 | isa = PBXGroup; 194 | children = ( 195 | BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */, 196 | EF52BB277888DC1D5A544687906019C7 /* Development Pods */, 197 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 198 | 16EDFA2B11198A3067D4792ABB9A4DE2 /* Products */, 199 | F73321FFB845979143D55BDCC3CD8F60 /* Targets Support Files */, 200 | ); 201 | sourceTree = ""; 202 | }; 203 | 8A38F1D6774AB2268B42A87002F3143B /* Pod */ = { 204 | isa = PBXGroup; 205 | children = ( 206 | 4A692D9AD73745BEB0C76AC697B7DDF0 /* Assets */, 207 | ); 208 | path = Pod; 209 | sourceTree = ""; 210 | }; 211 | A0235621CE513D33003E0FED5D0C8B32 /* SCCatWaitingHUD */ = { 212 | isa = PBXGroup; 213 | children = ( 214 | 79EF14FADADE8F639956274E3CF958E3 /* Pod */, 215 | FB7BF3CBC3715F56F3B77A8769B3DBD7 /* Resources */, 216 | B81D297921E46A3B78E8A998DD3417CE /* Support Files */, 217 | ); 218 | name = SCCatWaitingHUD; 219 | path = ../..; 220 | sourceTree = ""; 221 | }; 222 | B81D297921E46A3B78E8A998DD3417CE /* Support Files */ = { 223 | isa = PBXGroup; 224 | children = ( 225 | 87FD927E37385C0E1B65F8BE01FE2361 /* Info.plist */, 226 | DFA47C370F489FBDC8FA5B07768F6173 /* SCCatWaitingHUD.modulemap */, 227 | 038B9A05CB32AE43705C351587BBFE90 /* SCCatWaitingHUD.xcconfig */, 228 | BA8CBD621ED5349F9003218E295350E8 /* SCCatWaitingHUD-dummy.m */, 229 | 7F48BAFDD989A14D1C61168C1BF38062 /* SCCatWaitingHUD-prefix.pch */, 230 | 9FBAB929814E6602DF0B4B6996AB7AE4 /* SCCatWaitingHUD-umbrella.h */, 231 | ); 232 | name = "Support Files"; 233 | path = "Example/Pods/Target Support Files/SCCatWaitingHUD"; 234 | sourceTree = ""; 235 | }; 236 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 237 | isa = PBXGroup; 238 | children = ( 239 | BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */, 240 | ); 241 | name = Frameworks; 242 | sourceTree = ""; 243 | }; 244 | BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */ = { 245 | isa = PBXGroup; 246 | children = ( 247 | 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */, 248 | ); 249 | name = iOS; 250 | sourceTree = ""; 251 | }; 252 | E0D781EA757E5E699F1FC6B23AC863CE /* Classes */ = { 253 | isa = PBXGroup; 254 | children = ( 255 | 37BF2FBB2E26FEB133CD8A24A2B6AE11 /* SCCatWaitingHUD.h */, 256 | 5307D88090AAC36D62DB42C92AE14E10 /* SCCatWaitingHUD.m */, 257 | 4EAE670C075E70C4CF15BA8283102263 /* UIViewExt.h */, 258 | C7612335BF702C230DB59EB87FE2A550 /* UIViewExt.m */, 259 | ); 260 | path = Classes; 261 | sourceTree = ""; 262 | }; 263 | EF52BB277888DC1D5A544687906019C7 /* Development Pods */ = { 264 | isa = PBXGroup; 265 | children = ( 266 | A0235621CE513D33003E0FED5D0C8B32 /* SCCatWaitingHUD */, 267 | ); 268 | name = "Development Pods"; 269 | sourceTree = ""; 270 | }; 271 | F73321FFB845979143D55BDCC3CD8F60 /* Targets Support Files */ = { 272 | isa = PBXGroup; 273 | children = ( 274 | 66F7792D5A9D642A54081F97E1B149C8 /* Pods-SCCatWaitingHUD_Example */, 275 | 09AA24A2A8D94F70A07422B74FD4C7B9 /* Pods-SCCatWaitingHUD_Tests */, 276 | ); 277 | name = "Targets Support Files"; 278 | sourceTree = ""; 279 | }; 280 | FB7BF3CBC3715F56F3B77A8769B3DBD7 /* Resources */ = { 281 | isa = PBXGroup; 282 | children = ( 283 | 8A38F1D6774AB2268B42A87002F3143B /* Pod */, 284 | ); 285 | name = Resources; 286 | sourceTree = ""; 287 | }; 288 | /* End PBXGroup section */ 289 | 290 | /* Begin PBXHeadersBuildPhase section */ 291 | 9FFFB5ED074692C2228BA7CC7D62D41B /* Headers */ = { 292 | isa = PBXHeadersBuildPhase; 293 | buildActionMask = 2147483647; 294 | files = ( 295 | CFCC1377397187D5E861CA18F2560DAD /* SCCatWaitingHUD-umbrella.h in Headers */, 296 | 29D3C9C458ECE9A2D2A0940744ADFA66 /* SCCatWaitingHUD.h in Headers */, 297 | A332DAB0974DA471AD31643DB81B5F96 /* UIViewExt.h in Headers */, 298 | ); 299 | runOnlyForDeploymentPostprocessing = 0; 300 | }; 301 | F066C0728BFDF33C15B70A53DB5FDC1F /* Headers */ = { 302 | isa = PBXHeadersBuildPhase; 303 | buildActionMask = 2147483647; 304 | files = ( 305 | BFB0B67E0763E76ED4F0F875E93BD828 /* Pods-SCCatWaitingHUD_Tests-umbrella.h in Headers */, 306 | ); 307 | runOnlyForDeploymentPostprocessing = 0; 308 | }; 309 | FC224BC7920C32E879E116D94D4CB416 /* Headers */ = { 310 | isa = PBXHeadersBuildPhase; 311 | buildActionMask = 2147483647; 312 | files = ( 313 | 1D5D1650D94709745C74AABBCB5D1D8F /* Pods-SCCatWaitingHUD_Example-umbrella.h in Headers */, 314 | ); 315 | runOnlyForDeploymentPostprocessing = 0; 316 | }; 317 | /* End PBXHeadersBuildPhase section */ 318 | 319 | /* Begin PBXNativeTarget section */ 320 | 14215550D887F9EE504E78ADC7160A5E /* SCCatWaitingHUD */ = { 321 | isa = PBXNativeTarget; 322 | buildConfigurationList = AD6223F1E0981C9737CF7900AC6C2899 /* Build configuration list for PBXNativeTarget "SCCatWaitingHUD" */; 323 | buildPhases = ( 324 | ADAB71A3E5566DD5D4BEE528341E305B /* Sources */, 325 | B9EC6B8A628B8C83195DEB5108726185 /* Frameworks */, 326 | 057DC21320A1E82C586B48F554C5F06C /* Resources */, 327 | 9FFFB5ED074692C2228BA7CC7D62D41B /* Headers */, 328 | ); 329 | buildRules = ( 330 | ); 331 | dependencies = ( 332 | 344BB63FC3BFF83597BFF1F94A56AF1F /* PBXTargetDependency */, 333 | ); 334 | name = SCCatWaitingHUD; 335 | productName = SCCatWaitingHUD; 336 | productReference = 679F8CFFBF2B2DE08E2954DFCA693CDE /* SCCatWaitingHUD.framework */; 337 | productType = "com.apple.product-type.framework"; 338 | }; 339 | 33CAB605D3E6944FD3DCB0D822E05332 /* Pods-SCCatWaitingHUD_Tests */ = { 340 | isa = PBXNativeTarget; 341 | buildConfigurationList = B637F476AD618302C5A965318F262433 /* Build configuration list for PBXNativeTarget "Pods-SCCatWaitingHUD_Tests" */; 342 | buildPhases = ( 343 | 1018EA32DD6D609DE75B1ABC541D61A0 /* Sources */, 344 | 05D927738665351112356E1D47B0C071 /* Frameworks */, 345 | F066C0728BFDF33C15B70A53DB5FDC1F /* Headers */, 346 | ); 347 | buildRules = ( 348 | ); 349 | dependencies = ( 350 | FE101E1EE58EE125C183F8FC6FFA9674 /* PBXTargetDependency */, 351 | ); 352 | name = "Pods-SCCatWaitingHUD_Tests"; 353 | productName = "Pods-SCCatWaitingHUD_Tests"; 354 | productReference = EF3ACEFF284927306F05B1F607C65C71 /* Pods_SCCatWaitingHUD_Tests.framework */; 355 | productType = "com.apple.product-type.framework"; 356 | }; 357 | 46A6E0B09F391644AA9416B4B438555C /* SCCatWaitingHUD-SCCatWaitingHUD */ = { 358 | isa = PBXNativeTarget; 359 | buildConfigurationList = AFB1276454FCA6CA8D27909653C563BF /* Build configuration list for PBXNativeTarget "SCCatWaitingHUD-SCCatWaitingHUD" */; 360 | buildPhases = ( 361 | 1A5B0065DF3D1EC977A5B41EC2E4F3AF /* Sources */, 362 | 3AEE801F0411AAEBD5C4B9B6F2173A4F /* Frameworks */, 363 | 0A312C8EC8A64E96B262CFB5F934D358 /* Resources */, 364 | ); 365 | buildRules = ( 366 | ); 367 | dependencies = ( 368 | ); 369 | name = "SCCatWaitingHUD-SCCatWaitingHUD"; 370 | productName = "SCCatWaitingHUD-SCCatWaitingHUD"; 371 | productReference = CFE2615B154491D0423CFB3D86FE00CC /* SCCatWaitingHUD.bundle */; 372 | productType = "com.apple.product-type.bundle"; 373 | }; 374 | 868786DB78F29750EDB51DCD96F81900 /* Pods-SCCatWaitingHUD_Example */ = { 375 | isa = PBXNativeTarget; 376 | buildConfigurationList = C5348B2FD25B68030099A963A87D7549 /* Build configuration list for PBXNativeTarget "Pods-SCCatWaitingHUD_Example" */; 377 | buildPhases = ( 378 | 67BA435248FE78CBB07AB3D45DB94419 /* Sources */, 379 | BC3E7F6F85B945E8DC15029EEF0759D3 /* Frameworks */, 380 | FC224BC7920C32E879E116D94D4CB416 /* Headers */, 381 | ); 382 | buildRules = ( 383 | ); 384 | dependencies = ( 385 | 086111557F486C8E7ED808AFB6783561 /* PBXTargetDependency */, 386 | ); 387 | name = "Pods-SCCatWaitingHUD_Example"; 388 | productName = "Pods-SCCatWaitingHUD_Example"; 389 | productReference = BF6C6FD1E8A53D620FC3805B4D066FDB /* Pods_SCCatWaitingHUD_Example.framework */; 390 | productType = "com.apple.product-type.framework"; 391 | }; 392 | /* End PBXNativeTarget section */ 393 | 394 | /* Begin PBXProject section */ 395 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 396 | isa = PBXProject; 397 | attributes = { 398 | LastSwiftUpdateCheck = 0700; 399 | LastUpgradeCheck = 0700; 400 | }; 401 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 402 | compatibilityVersion = "Xcode 3.2"; 403 | developmentRegion = English; 404 | hasScannedForEncodings = 0; 405 | knownRegions = ( 406 | en, 407 | ); 408 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 409 | productRefGroup = 16EDFA2B11198A3067D4792ABB9A4DE2 /* Products */; 410 | projectDirPath = ""; 411 | projectRoot = ""; 412 | targets = ( 413 | 868786DB78F29750EDB51DCD96F81900 /* Pods-SCCatWaitingHUD_Example */, 414 | 33CAB605D3E6944FD3DCB0D822E05332 /* Pods-SCCatWaitingHUD_Tests */, 415 | 14215550D887F9EE504E78ADC7160A5E /* SCCatWaitingHUD */, 416 | 46A6E0B09F391644AA9416B4B438555C /* SCCatWaitingHUD-SCCatWaitingHUD */, 417 | ); 418 | }; 419 | /* End PBXProject section */ 420 | 421 | /* Begin PBXResourcesBuildPhase section */ 422 | 057DC21320A1E82C586B48F554C5F06C /* Resources */ = { 423 | isa = PBXResourcesBuildPhase; 424 | buildActionMask = 2147483647; 425 | files = ( 426 | 1CE80565C0A8D53F251F14669B8632E3 /* SCCatWaitingHUD.bundle in Resources */, 427 | ); 428 | runOnlyForDeploymentPostprocessing = 0; 429 | }; 430 | 0A312C8EC8A64E96B262CFB5F934D358 /* Resources */ = { 431 | isa = PBXResourcesBuildPhase; 432 | buildActionMask = 2147483647; 433 | files = ( 434 | 6CCF77374BB4C0A351C5677A8AE1C43F /* MAO@2x.png in Resources */, 435 | 7E5C952D81ADBBFD2A77740EB4551745 /* mouse@2x.png in Resources */, 436 | ); 437 | runOnlyForDeploymentPostprocessing = 0; 438 | }; 439 | /* End PBXResourcesBuildPhase section */ 440 | 441 | /* Begin PBXSourcesBuildPhase section */ 442 | 1018EA32DD6D609DE75B1ABC541D61A0 /* Sources */ = { 443 | isa = PBXSourcesBuildPhase; 444 | buildActionMask = 2147483647; 445 | files = ( 446 | 4A66C4A884C9A6E2D67B873EF481F7C9 /* Pods-SCCatWaitingHUD_Tests-dummy.m in Sources */, 447 | ); 448 | runOnlyForDeploymentPostprocessing = 0; 449 | }; 450 | 1A5B0065DF3D1EC977A5B41EC2E4F3AF /* Sources */ = { 451 | isa = PBXSourcesBuildPhase; 452 | buildActionMask = 2147483647; 453 | files = ( 454 | ); 455 | runOnlyForDeploymentPostprocessing = 0; 456 | }; 457 | 67BA435248FE78CBB07AB3D45DB94419 /* Sources */ = { 458 | isa = PBXSourcesBuildPhase; 459 | buildActionMask = 2147483647; 460 | files = ( 461 | C53B00DB0175CEAD29F547435A7638F2 /* Pods-SCCatWaitingHUD_Example-dummy.m in Sources */, 462 | ); 463 | runOnlyForDeploymentPostprocessing = 0; 464 | }; 465 | ADAB71A3E5566DD5D4BEE528341E305B /* Sources */ = { 466 | isa = PBXSourcesBuildPhase; 467 | buildActionMask = 2147483647; 468 | files = ( 469 | E42CD59A9260CC6C039F9FA8CF5354CE /* SCCatWaitingHUD-dummy.m in Sources */, 470 | 310F477D1FA5FA6BE6D99D5C54BB4FEE /* SCCatWaitingHUD.m in Sources */, 471 | 528A2C5955392708D5D528D57F276F7B /* UIViewExt.m in Sources */, 472 | ); 473 | runOnlyForDeploymentPostprocessing = 0; 474 | }; 475 | /* End PBXSourcesBuildPhase section */ 476 | 477 | /* Begin PBXTargetDependency section */ 478 | 086111557F486C8E7ED808AFB6783561 /* PBXTargetDependency */ = { 479 | isa = PBXTargetDependency; 480 | name = SCCatWaitingHUD; 481 | target = 14215550D887F9EE504E78ADC7160A5E /* SCCatWaitingHUD */; 482 | targetProxy = AA2D508CE47D5793D65CD8C2CFFAEA9C /* PBXContainerItemProxy */; 483 | }; 484 | 344BB63FC3BFF83597BFF1F94A56AF1F /* PBXTargetDependency */ = { 485 | isa = PBXTargetDependency; 486 | name = "SCCatWaitingHUD-SCCatWaitingHUD"; 487 | target = 46A6E0B09F391644AA9416B4B438555C /* SCCatWaitingHUD-SCCatWaitingHUD */; 488 | targetProxy = CED878A0B5F55AC2F107BBFD39F98C67 /* PBXContainerItemProxy */; 489 | }; 490 | FE101E1EE58EE125C183F8FC6FFA9674 /* PBXTargetDependency */ = { 491 | isa = PBXTargetDependency; 492 | name = SCCatWaitingHUD; 493 | target = 14215550D887F9EE504E78ADC7160A5E /* SCCatWaitingHUD */; 494 | targetProxy = BF930C57FD7FE1BE17629D37FC08B320 /* PBXContainerItemProxy */; 495 | }; 496 | /* End PBXTargetDependency section */ 497 | 498 | /* Begin XCBuildConfiguration section */ 499 | 0C7F3D30D6B10C5E2C616D446E3A8513 /* Release */ = { 500 | isa = XCBuildConfiguration; 501 | baseConfigurationReference = 3E1246C71E4AE4597380CA931EE3094F /* Pods-SCCatWaitingHUD_Example.release.xcconfig */; 502 | buildSettings = { 503 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 504 | CURRENT_PROJECT_VERSION = 1; 505 | DEFINES_MODULE = YES; 506 | DYLIB_COMPATIBILITY_VERSION = 1; 507 | DYLIB_CURRENT_VERSION = 1; 508 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 509 | ENABLE_STRICT_OBJC_MSGSEND = YES; 510 | INFOPLIST_FILE = "Target Support Files/Pods-SCCatWaitingHUD_Example/Info.plist"; 511 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 512 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 513 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 514 | MACH_O_TYPE = staticlib; 515 | MODULEMAP_FILE = "Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example.modulemap"; 516 | MTL_ENABLE_DEBUG_INFO = NO; 517 | OTHER_LDFLAGS = ""; 518 | OTHER_LIBTOOLFLAGS = ""; 519 | PODS_ROOT = "$(SRCROOT)"; 520 | PRODUCT_NAME = Pods_SCCatWaitingHUD_Example; 521 | SDKROOT = iphoneos; 522 | SKIP_INSTALL = YES; 523 | TARGETED_DEVICE_FAMILY = "1,2"; 524 | VERSIONING_SYSTEM = "apple-generic"; 525 | VERSION_INFO_PREFIX = ""; 526 | }; 527 | name = Release; 528 | }; 529 | 2DE4BB2D61BA5D55FB1AB2CB5B4669EF /* Debug */ = { 530 | isa = XCBuildConfiguration; 531 | baseConfigurationReference = 415156AF599C3BDDB7FBA68656F1EA09 /* Pods-SCCatWaitingHUD_Tests.debug.xcconfig */; 532 | buildSettings = { 533 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 534 | CURRENT_PROJECT_VERSION = 1; 535 | DEFINES_MODULE = YES; 536 | DYLIB_COMPATIBILITY_VERSION = 1; 537 | DYLIB_CURRENT_VERSION = 1; 538 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 539 | ENABLE_STRICT_OBJC_MSGSEND = YES; 540 | INFOPLIST_FILE = "Target Support Files/Pods-SCCatWaitingHUD_Tests/Info.plist"; 541 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 542 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 543 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 544 | MACH_O_TYPE = staticlib; 545 | MODULEMAP_FILE = "Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests.modulemap"; 546 | MTL_ENABLE_DEBUG_INFO = YES; 547 | OTHER_LDFLAGS = ""; 548 | OTHER_LIBTOOLFLAGS = ""; 549 | PODS_ROOT = "$(SRCROOT)"; 550 | PRODUCT_NAME = Pods_SCCatWaitingHUD_Tests; 551 | SDKROOT = iphoneos; 552 | SKIP_INSTALL = YES; 553 | TARGETED_DEVICE_FAMILY = "1,2"; 554 | VERSIONING_SYSTEM = "apple-generic"; 555 | VERSION_INFO_PREFIX = ""; 556 | }; 557 | name = Debug; 558 | }; 559 | 3A595BE7B1059CE4D4B9A836F8EDF8EF /* Debug */ = { 560 | isa = XCBuildConfiguration; 561 | baseConfigurationReference = 038B9A05CB32AE43705C351587BBFE90 /* SCCatWaitingHUD.xcconfig */; 562 | buildSettings = { 563 | ENABLE_STRICT_OBJC_MSGSEND = YES; 564 | PRODUCT_NAME = SCCatWaitingHUD; 565 | SDKROOT = iphoneos; 566 | SKIP_INSTALL = YES; 567 | WRAPPER_EXTENSION = bundle; 568 | }; 569 | name = Debug; 570 | }; 571 | 8D7A32F1A548D734D7A0CCFD59B5B85F /* Debug */ = { 572 | isa = XCBuildConfiguration; 573 | baseConfigurationReference = 546110F3B084A2C0C5DE60CAFA890811 /* Pods-SCCatWaitingHUD_Example.debug.xcconfig */; 574 | buildSettings = { 575 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 576 | CURRENT_PROJECT_VERSION = 1; 577 | DEFINES_MODULE = YES; 578 | DYLIB_COMPATIBILITY_VERSION = 1; 579 | DYLIB_CURRENT_VERSION = 1; 580 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 581 | ENABLE_STRICT_OBJC_MSGSEND = YES; 582 | INFOPLIST_FILE = "Target Support Files/Pods-SCCatWaitingHUD_Example/Info.plist"; 583 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 584 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 585 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 586 | MACH_O_TYPE = staticlib; 587 | MODULEMAP_FILE = "Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example.modulemap"; 588 | MTL_ENABLE_DEBUG_INFO = YES; 589 | OTHER_LDFLAGS = ""; 590 | OTHER_LIBTOOLFLAGS = ""; 591 | PODS_ROOT = "$(SRCROOT)"; 592 | PRODUCT_NAME = Pods_SCCatWaitingHUD_Example; 593 | SDKROOT = iphoneos; 594 | SKIP_INSTALL = YES; 595 | TARGETED_DEVICE_FAMILY = "1,2"; 596 | VERSIONING_SYSTEM = "apple-generic"; 597 | VERSION_INFO_PREFIX = ""; 598 | }; 599 | name = Debug; 600 | }; 601 | A70CDAD61F90AC503C7D04CC22DA2923 /* Debug */ = { 602 | isa = XCBuildConfiguration; 603 | buildSettings = { 604 | ALWAYS_SEARCH_USER_PATHS = NO; 605 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 606 | CLANG_CXX_LIBRARY = "libc++"; 607 | CLANG_ENABLE_MODULES = YES; 608 | CLANG_ENABLE_OBJC_ARC = YES; 609 | CLANG_WARN_BOOL_CONVERSION = YES; 610 | CLANG_WARN_CONSTANT_CONVERSION = YES; 611 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 612 | CLANG_WARN_EMPTY_BODY = YES; 613 | CLANG_WARN_ENUM_CONVERSION = YES; 614 | CLANG_WARN_INT_CONVERSION = YES; 615 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 616 | CLANG_WARN_UNREACHABLE_CODE = YES; 617 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 618 | COPY_PHASE_STRIP = NO; 619 | GCC_C_LANGUAGE_STANDARD = gnu99; 620 | GCC_DYNAMIC_NO_PIC = NO; 621 | GCC_OPTIMIZATION_LEVEL = 0; 622 | GCC_PREPROCESSOR_DEFINITIONS = ( 623 | "DEBUG=1", 624 | "$(inherited)", 625 | ); 626 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 627 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 628 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 629 | GCC_WARN_UNDECLARED_SELECTOR = YES; 630 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 631 | GCC_WARN_UNUSED_FUNCTION = YES; 632 | GCC_WARN_UNUSED_VARIABLE = YES; 633 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 634 | ONLY_ACTIVE_ARCH = YES; 635 | STRIP_INSTALLED_PRODUCT = NO; 636 | SYMROOT = "${SRCROOT}/../build"; 637 | }; 638 | name = Debug; 639 | }; 640 | B05935F9C07177E5C191291A9F18EEFD /* Debug */ = { 641 | isa = XCBuildConfiguration; 642 | baseConfigurationReference = 038B9A05CB32AE43705C351587BBFE90 /* SCCatWaitingHUD.xcconfig */; 643 | buildSettings = { 644 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 645 | CURRENT_PROJECT_VERSION = 1; 646 | DEFINES_MODULE = YES; 647 | DYLIB_COMPATIBILITY_VERSION = 1; 648 | DYLIB_CURRENT_VERSION = 1; 649 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 650 | ENABLE_STRICT_OBJC_MSGSEND = YES; 651 | GCC_PREFIX_HEADER = "Target Support Files/SCCatWaitingHUD/SCCatWaitingHUD-prefix.pch"; 652 | INFOPLIST_FILE = "Target Support Files/SCCatWaitingHUD/Info.plist"; 653 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 654 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 655 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 656 | MODULEMAP_FILE = "Target Support Files/SCCatWaitingHUD/SCCatWaitingHUD.modulemap"; 657 | MTL_ENABLE_DEBUG_INFO = YES; 658 | PRODUCT_NAME = SCCatWaitingHUD; 659 | SDKROOT = iphoneos; 660 | SKIP_INSTALL = YES; 661 | TARGETED_DEVICE_FAMILY = "1,2"; 662 | VERSIONING_SYSTEM = "apple-generic"; 663 | VERSION_INFO_PREFIX = ""; 664 | }; 665 | name = Debug; 666 | }; 667 | C60622C0D38F69D70BE3BEB7AFCCE1E9 /* Release */ = { 668 | isa = XCBuildConfiguration; 669 | baseConfigurationReference = A8A6BF9DD59C598F51F07BAF88ED7F22 /* Pods-SCCatWaitingHUD_Tests.release.xcconfig */; 670 | buildSettings = { 671 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 672 | CURRENT_PROJECT_VERSION = 1; 673 | DEFINES_MODULE = YES; 674 | DYLIB_COMPATIBILITY_VERSION = 1; 675 | DYLIB_CURRENT_VERSION = 1; 676 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 677 | ENABLE_STRICT_OBJC_MSGSEND = YES; 678 | INFOPLIST_FILE = "Target Support Files/Pods-SCCatWaitingHUD_Tests/Info.plist"; 679 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 680 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 681 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 682 | MACH_O_TYPE = staticlib; 683 | MODULEMAP_FILE = "Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests.modulemap"; 684 | MTL_ENABLE_DEBUG_INFO = NO; 685 | OTHER_LDFLAGS = ""; 686 | OTHER_LIBTOOLFLAGS = ""; 687 | PODS_ROOT = "$(SRCROOT)"; 688 | PRODUCT_NAME = Pods_SCCatWaitingHUD_Tests; 689 | SDKROOT = iphoneos; 690 | SKIP_INSTALL = YES; 691 | TARGETED_DEVICE_FAMILY = "1,2"; 692 | VERSIONING_SYSTEM = "apple-generic"; 693 | VERSION_INFO_PREFIX = ""; 694 | }; 695 | name = Release; 696 | }; 697 | E3F3E81F627D0FF9471C8358241ABD9A /* Release */ = { 698 | isa = XCBuildConfiguration; 699 | baseConfigurationReference = 038B9A05CB32AE43705C351587BBFE90 /* SCCatWaitingHUD.xcconfig */; 700 | buildSettings = { 701 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 702 | CURRENT_PROJECT_VERSION = 1; 703 | DEFINES_MODULE = YES; 704 | DYLIB_COMPATIBILITY_VERSION = 1; 705 | DYLIB_CURRENT_VERSION = 1; 706 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 707 | ENABLE_STRICT_OBJC_MSGSEND = YES; 708 | GCC_PREFIX_HEADER = "Target Support Files/SCCatWaitingHUD/SCCatWaitingHUD-prefix.pch"; 709 | INFOPLIST_FILE = "Target Support Files/SCCatWaitingHUD/Info.plist"; 710 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 711 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 712 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 713 | MODULEMAP_FILE = "Target Support Files/SCCatWaitingHUD/SCCatWaitingHUD.modulemap"; 714 | MTL_ENABLE_DEBUG_INFO = NO; 715 | PRODUCT_NAME = SCCatWaitingHUD; 716 | SDKROOT = iphoneos; 717 | SKIP_INSTALL = YES; 718 | TARGETED_DEVICE_FAMILY = "1,2"; 719 | VERSIONING_SYSTEM = "apple-generic"; 720 | VERSION_INFO_PREFIX = ""; 721 | }; 722 | name = Release; 723 | }; 724 | E42FD840E704493BEE818D9F088FD345 /* Release */ = { 725 | isa = XCBuildConfiguration; 726 | baseConfigurationReference = 038B9A05CB32AE43705C351587BBFE90 /* SCCatWaitingHUD.xcconfig */; 727 | buildSettings = { 728 | ENABLE_STRICT_OBJC_MSGSEND = YES; 729 | PRODUCT_NAME = SCCatWaitingHUD; 730 | SDKROOT = iphoneos; 731 | SKIP_INSTALL = YES; 732 | WRAPPER_EXTENSION = bundle; 733 | }; 734 | name = Release; 735 | }; 736 | FB45FFD90572718D82AB9092B750F0CA /* Release */ = { 737 | isa = XCBuildConfiguration; 738 | buildSettings = { 739 | ALWAYS_SEARCH_USER_PATHS = NO; 740 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 741 | CLANG_CXX_LIBRARY = "libc++"; 742 | CLANG_ENABLE_MODULES = YES; 743 | CLANG_ENABLE_OBJC_ARC = YES; 744 | CLANG_WARN_BOOL_CONVERSION = YES; 745 | CLANG_WARN_CONSTANT_CONVERSION = YES; 746 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 747 | CLANG_WARN_EMPTY_BODY = YES; 748 | CLANG_WARN_ENUM_CONVERSION = YES; 749 | CLANG_WARN_INT_CONVERSION = YES; 750 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 751 | CLANG_WARN_UNREACHABLE_CODE = YES; 752 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 753 | COPY_PHASE_STRIP = YES; 754 | ENABLE_NS_ASSERTIONS = NO; 755 | GCC_C_LANGUAGE_STANDARD = gnu99; 756 | GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; 757 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 758 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 759 | GCC_WARN_UNDECLARED_SELECTOR = YES; 760 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 761 | GCC_WARN_UNUSED_FUNCTION = YES; 762 | GCC_WARN_UNUSED_VARIABLE = YES; 763 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 764 | STRIP_INSTALLED_PRODUCT = NO; 765 | SYMROOT = "${SRCROOT}/../build"; 766 | VALIDATE_PRODUCT = YES; 767 | }; 768 | name = Release; 769 | }; 770 | /* End XCBuildConfiguration section */ 771 | 772 | /* Begin XCConfigurationList section */ 773 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 774 | isa = XCConfigurationList; 775 | buildConfigurations = ( 776 | A70CDAD61F90AC503C7D04CC22DA2923 /* Debug */, 777 | FB45FFD90572718D82AB9092B750F0CA /* Release */, 778 | ); 779 | defaultConfigurationIsVisible = 0; 780 | defaultConfigurationName = Release; 781 | }; 782 | AD6223F1E0981C9737CF7900AC6C2899 /* Build configuration list for PBXNativeTarget "SCCatWaitingHUD" */ = { 783 | isa = XCConfigurationList; 784 | buildConfigurations = ( 785 | B05935F9C07177E5C191291A9F18EEFD /* Debug */, 786 | E3F3E81F627D0FF9471C8358241ABD9A /* Release */, 787 | ); 788 | defaultConfigurationIsVisible = 0; 789 | defaultConfigurationName = Release; 790 | }; 791 | AFB1276454FCA6CA8D27909653C563BF /* Build configuration list for PBXNativeTarget "SCCatWaitingHUD-SCCatWaitingHUD" */ = { 792 | isa = XCConfigurationList; 793 | buildConfigurations = ( 794 | 3A595BE7B1059CE4D4B9A836F8EDF8EF /* Debug */, 795 | E42FD840E704493BEE818D9F088FD345 /* Release */, 796 | ); 797 | defaultConfigurationIsVisible = 0; 798 | defaultConfigurationName = Release; 799 | }; 800 | B637F476AD618302C5A965318F262433 /* Build configuration list for PBXNativeTarget "Pods-SCCatWaitingHUD_Tests" */ = { 801 | isa = XCConfigurationList; 802 | buildConfigurations = ( 803 | 2DE4BB2D61BA5D55FB1AB2CB5B4669EF /* Debug */, 804 | C60622C0D38F69D70BE3BEB7AFCCE1E9 /* Release */, 805 | ); 806 | defaultConfigurationIsVisible = 0; 807 | defaultConfigurationName = Release; 808 | }; 809 | C5348B2FD25B68030099A963A87D7549 /* Build configuration list for PBXNativeTarget "Pods-SCCatWaitingHUD_Example" */ = { 810 | isa = XCConfigurationList; 811 | buildConfigurations = ( 812 | 8D7A32F1A548D734D7A0CCFD59B5B85F /* Debug */, 813 | 0C7F3D30D6B10C5E2C616D446E3A8513 /* Release */, 814 | ); 815 | defaultConfigurationIsVisible = 0; 816 | defaultConfigurationName = Release; 817 | }; 818 | /* End XCConfigurationList section */ 819 | }; 820 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 821 | } 822 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/SCCatWaitingHUD.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 45 | 46 | 52 | 53 | 55 | 56 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## SCCatWaitingHUD 5 | 6 | Copyright (c) 2015 SergioChan 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 - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_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) 2015 SergioChan <yuheng9211@qq.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 | Title 38 | SCCatWaitingHUD 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SCCatWaitingHUD_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SCCatWaitingHUD_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "Pods-SCCatWaitingHUD_Example/SCCatWaitingHUD.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "Pods-SCCatWaitingHUD_Example/SCCatWaitingHUD.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY="$(cd "${1%/*}" && pwd)" 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 22 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 23 | ;; 24 | *.xib) 25 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 26 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 63 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 64 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 65 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 66 | fi 67 | rm -f "$RESOURCES_TO_COPY" 68 | 69 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 70 | then 71 | case "${TARGETED_DEVICE_FAMILY}" in 72 | 1,2) 73 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 74 | ;; 75 | 1) 76 | TARGET_DEVICE_ARGS="--target-device iphone" 77 | ;; 78 | 2) 79 | TARGET_DEVICE_ARGS="--target-device ipad" 80 | ;; 81 | *) 82 | TARGET_DEVICE_ARGS="--target-device mac" 83 | ;; 84 | esac 85 | 86 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 87 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 88 | while read line; do 89 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 90 | XCASSET_FILES+=("$line") 91 | fi 92 | done <<<"$OTHER_XCASSETS" 93 | 94 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 95 | fi 96 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_SCCatWaitingHUD_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_SCCatWaitingHUD_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/SCCatWaitingHUD.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "SCCatWaitingHUD" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-SCCatWaitingHUD_Example 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SCCatWaitingHUD_Example { 2 | umbrella header "Pods-SCCatWaitingHUD_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/SCCatWaitingHUD.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "SCCatWaitingHUD" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-SCCatWaitingHUD_Example 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## SCCatWaitingHUD 5 | 6 | Copyright (c) 2015 SergioChan 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 - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_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 | Copyright (c) 2015 SergioChan <yuheng9211@qq.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 | Title 38 | SCCatWaitingHUD 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SCCatWaitingHUD_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SCCatWaitingHUD_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "Pods-SCCatWaitingHUD_Tests/SCCatWaitingHUD.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "Pods-SCCatWaitingHUD_Tests/SCCatWaitingHUD.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | realpath() { 12 | DIRECTORY="$(cd "${1%/*}" && pwd)" 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 22 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 23 | ;; 24 | *.xib) 25 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 26 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | 61 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 62 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 63 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 64 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 65 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 66 | fi 67 | rm -f "$RESOURCES_TO_COPY" 68 | 69 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 70 | then 71 | case "${TARGETED_DEVICE_FAMILY}" in 72 | 1,2) 73 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 74 | ;; 75 | 1) 76 | TARGET_DEVICE_ARGS="--target-device iphone" 77 | ;; 78 | 2) 79 | TARGET_DEVICE_ARGS="--target-device ipad" 80 | ;; 81 | *) 82 | TARGET_DEVICE_ARGS="--target-device mac" 83 | ;; 84 | esac 85 | 86 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 87 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 88 | while read line; do 89 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 90 | XCASSET_FILES+=("$line") 91 | fi 92 | done <<<"$OTHER_XCASSETS" 93 | 94 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 95 | fi 96 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_SCCatWaitingHUD_TestsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_SCCatWaitingHUD_TestsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/SCCatWaitingHUD.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "SCCatWaitingHUD" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-SCCatWaitingHUD_Tests 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SCCatWaitingHUD_Tests { 2 | umbrella header "Pods-SCCatWaitingHUD_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 3 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/SCCatWaitingHUD.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "SCCatWaitingHUD" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-SCCatWaitingHUD_Tests 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SCCatWaitingHUD/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SCCatWaitingHUD/SCCatWaitingHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SCCatWaitingHUD : NSObject 3 | @end 4 | @implementation PodsDummy_SCCatWaitingHUD 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SCCatWaitingHUD/SCCatWaitingHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SCCatWaitingHUD/SCCatWaitingHUD-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "GlobalHeader.h" 4 | #import "SCCatWaitingHUD.h" 5 | #import "UIViewExt.h" 6 | 7 | FOUNDATION_EXPORT double SCCatWaitingHUDVersionNumber; 8 | FOUNDATION_EXPORT const unsigned char SCCatWaitingHUDVersionString[]; 9 | 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SCCatWaitingHUD/SCCatWaitingHUD.modulemap: -------------------------------------------------------------------------------- 1 | framework module SCCatWaitingHUD { 2 | umbrella header "SCCatWaitingHUD-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SCCatWaitingHUD/SCCatWaitingHUD.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SCCatWaitingHUD" "${PODS_ROOT}/Headers/Public" 3 | PODS_ROOT = ${SRCROOT} 4 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 11 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 12 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 13 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 14 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 15 | 6003F59E195388D20070C39A /* SCAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* SCAppDelegate.m */; }; 16 | 6003F5A7195388D20070C39A /* SCViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* SCViewController.m */; }; 17 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 18 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 19 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 20 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 21 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 22 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 23 | 74E9147079643FE455CF4A7D /* Pods_SCCatWaitingHUD_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79F50D8AE3689E58A8AF45F2 /* Pods_SCCatWaitingHUD_Example.framework */; }; 24 | 829DD6C96BBDC296800A7120 /* Pods_SCCatWaitingHUD_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A71991AAB93CCBE80D9D327 /* Pods_SCCatWaitingHUD_Tests.framework */; }; 25 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 6003F582195388D10070C39A /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 6003F589195388D20070C39A; 34 | remoteInfo = SCCatWaitingHUD; 35 | }; 36 | /* End PBXContainerItemProxy section */ 37 | 38 | /* Begin PBXFileReference section */ 39 | 48E0E2F58315BEFC43843308 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 40 | 5CFE4AA53B22DE048FC74463 /* Pods-SCCatWaitingHUD_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SCCatWaitingHUD_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example.release.xcconfig"; sourceTree = ""; }; 41 | 6003F58A195388D20070C39A /* SCCatWaitingHUD_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SCCatWaitingHUD_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 43 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 44 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 45 | 6003F595195388D20070C39A /* SCCatWaitingHUD-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "SCCatWaitingHUD-Info.plist"; sourceTree = ""; }; 46 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 47 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 48 | 6003F59B195388D20070C39A /* SCCatWaitingHUD-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SCCatWaitingHUD-Prefix.pch"; sourceTree = ""; }; 49 | 6003F59C195388D20070C39A /* SCAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SCAppDelegate.h; sourceTree = ""; }; 50 | 6003F59D195388D20070C39A /* SCAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SCAppDelegate.m; sourceTree = ""; }; 51 | 6003F5A5195388D20070C39A /* SCViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SCViewController.h; sourceTree = ""; }; 52 | 6003F5A6195388D20070C39A /* SCViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SCViewController.m; sourceTree = ""; }; 53 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 54 | 6003F5AE195388D20070C39A /* SCCatWaitingHUD_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SCCatWaitingHUD_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 56 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 57 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 58 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 59 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 60 | 79F50D8AE3689E58A8AF45F2 /* Pods_SCCatWaitingHUD_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SCCatWaitingHUD_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 61 | 7A71991AAB93CCBE80D9D327 /* Pods_SCCatWaitingHUD_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SCCatWaitingHUD_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 62 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; 63 | A3EF8D5822D182EC1E13CE3C /* Pods-SCCatWaitingHUD_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SCCatWaitingHUD_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example.debug.xcconfig"; sourceTree = ""; }; 64 | B4625CFBB5CFEC04A7FAFFDF /* Pods-SCCatWaitingHUD_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SCCatWaitingHUD_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests.release.xcconfig"; sourceTree = ""; }; 65 | CFC3FA1E0907E3741997B2E4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 66 | E4EF1942EC877BD9F7F3C136 /* Pods-SCCatWaitingHUD_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SCCatWaitingHUD_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests.debug.xcconfig"; sourceTree = ""; }; 67 | F3B3220EB42687CF403299A3 /* SCCatWaitingHUD.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = SCCatWaitingHUD.podspec; path = ../SCCatWaitingHUD.podspec; sourceTree = ""; }; 68 | /* End PBXFileReference section */ 69 | 70 | /* Begin PBXFrameworksBuildPhase section */ 71 | 6003F587195388D20070C39A /* Frameworks */ = { 72 | isa = PBXFrameworksBuildPhase; 73 | buildActionMask = 2147483647; 74 | files = ( 75 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 76 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 77 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 78 | 74E9147079643FE455CF4A7D /* Pods_SCCatWaitingHUD_Example.framework in Frameworks */, 79 | ); 80 | runOnlyForDeploymentPostprocessing = 0; 81 | }; 82 | 6003F5AB195388D20070C39A /* Frameworks */ = { 83 | isa = PBXFrameworksBuildPhase; 84 | buildActionMask = 2147483647; 85 | files = ( 86 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 87 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 88 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 89 | 829DD6C96BBDC296800A7120 /* Pods_SCCatWaitingHUD_Tests.framework in Frameworks */, 90 | ); 91 | runOnlyForDeploymentPostprocessing = 0; 92 | }; 93 | /* End PBXFrameworksBuildPhase section */ 94 | 95 | /* Begin PBXGroup section */ 96 | 6003F581195388D10070C39A = { 97 | isa = PBXGroup; 98 | children = ( 99 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 100 | 6003F593195388D20070C39A /* Example for SCCatWaitingHUD */, 101 | 6003F5B5195388D20070C39A /* Tests */, 102 | 6003F58C195388D20070C39A /* Frameworks */, 103 | 6003F58B195388D20070C39A /* Products */, 104 | 68A8053847276E2313879AC2 /* Pods */, 105 | ); 106 | sourceTree = ""; 107 | }; 108 | 6003F58B195388D20070C39A /* Products */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | 6003F58A195388D20070C39A /* SCCatWaitingHUD_Example.app */, 112 | 6003F5AE195388D20070C39A /* SCCatWaitingHUD_Tests.xctest */, 113 | ); 114 | name = Products; 115 | sourceTree = ""; 116 | }; 117 | 6003F58C195388D20070C39A /* Frameworks */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 6003F58D195388D20070C39A /* Foundation.framework */, 121 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 122 | 6003F591195388D20070C39A /* UIKit.framework */, 123 | 6003F5AF195388D20070C39A /* XCTest.framework */, 124 | 79F50D8AE3689E58A8AF45F2 /* Pods_SCCatWaitingHUD_Example.framework */, 125 | 7A71991AAB93CCBE80D9D327 /* Pods_SCCatWaitingHUD_Tests.framework */, 126 | ); 127 | name = Frameworks; 128 | sourceTree = ""; 129 | }; 130 | 6003F593195388D20070C39A /* Example for SCCatWaitingHUD */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | 6003F59C195388D20070C39A /* SCAppDelegate.h */, 134 | 6003F59D195388D20070C39A /* SCAppDelegate.m */, 135 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, 136 | 6003F5A5195388D20070C39A /* SCViewController.h */, 137 | 6003F5A6195388D20070C39A /* SCViewController.m */, 138 | 6003F5A8195388D20070C39A /* Images.xcassets */, 139 | 6003F594195388D20070C39A /* Supporting Files */, 140 | ); 141 | name = "Example for SCCatWaitingHUD"; 142 | path = SCCatWaitingHUD; 143 | sourceTree = ""; 144 | }; 145 | 6003F594195388D20070C39A /* Supporting Files */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 6003F595195388D20070C39A /* SCCatWaitingHUD-Info.plist */, 149 | 6003F596195388D20070C39A /* InfoPlist.strings */, 150 | 6003F599195388D20070C39A /* main.m */, 151 | 6003F59B195388D20070C39A /* SCCatWaitingHUD-Prefix.pch */, 152 | ); 153 | name = "Supporting Files"; 154 | sourceTree = ""; 155 | }; 156 | 6003F5B5195388D20070C39A /* Tests */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | 6003F5BB195388D20070C39A /* Tests.m */, 160 | 6003F5B6195388D20070C39A /* Supporting Files */, 161 | ); 162 | path = Tests; 163 | sourceTree = ""; 164 | }; 165 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 169 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 170 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 171 | ); 172 | name = "Supporting Files"; 173 | sourceTree = ""; 174 | }; 175 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 176 | isa = PBXGroup; 177 | children = ( 178 | F3B3220EB42687CF403299A3 /* SCCatWaitingHUD.podspec */, 179 | CFC3FA1E0907E3741997B2E4 /* README.md */, 180 | 48E0E2F58315BEFC43843308 /* LICENSE */, 181 | ); 182 | name = "Podspec Metadata"; 183 | sourceTree = ""; 184 | }; 185 | 68A8053847276E2313879AC2 /* Pods */ = { 186 | isa = PBXGroup; 187 | children = ( 188 | A3EF8D5822D182EC1E13CE3C /* Pods-SCCatWaitingHUD_Example.debug.xcconfig */, 189 | 5CFE4AA53B22DE048FC74463 /* Pods-SCCatWaitingHUD_Example.release.xcconfig */, 190 | E4EF1942EC877BD9F7F3C136 /* Pods-SCCatWaitingHUD_Tests.debug.xcconfig */, 191 | B4625CFBB5CFEC04A7FAFFDF /* Pods-SCCatWaitingHUD_Tests.release.xcconfig */, 192 | ); 193 | name = Pods; 194 | sourceTree = ""; 195 | }; 196 | /* End PBXGroup section */ 197 | 198 | /* Begin PBXNativeTarget section */ 199 | 6003F589195388D20070C39A /* SCCatWaitingHUD_Example */ = { 200 | isa = PBXNativeTarget; 201 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "SCCatWaitingHUD_Example" */; 202 | buildPhases = ( 203 | 9EFC23661D28BACFBD6970F6 /* Check Pods Manifest.lock */, 204 | 6003F586195388D20070C39A /* Sources */, 205 | 6003F587195388D20070C39A /* Frameworks */, 206 | 6003F588195388D20070C39A /* Resources */, 207 | ABFD6B126FC452D97EE8BA5B /* Embed Pods Frameworks */, 208 | ED3780F63B07DDBF024DC473 /* Copy Pods Resources */, 209 | ); 210 | buildRules = ( 211 | ); 212 | dependencies = ( 213 | ); 214 | name = SCCatWaitingHUD_Example; 215 | productName = SCCatWaitingHUD; 216 | productReference = 6003F58A195388D20070C39A /* SCCatWaitingHUD_Example.app */; 217 | productType = "com.apple.product-type.application"; 218 | }; 219 | 6003F5AD195388D20070C39A /* SCCatWaitingHUD_Tests */ = { 220 | isa = PBXNativeTarget; 221 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "SCCatWaitingHUD_Tests" */; 222 | buildPhases = ( 223 | DB5CA06F3E531A3F4CA61CD3 /* Check Pods Manifest.lock */, 224 | 6003F5AA195388D20070C39A /* Sources */, 225 | 6003F5AB195388D20070C39A /* Frameworks */, 226 | 6003F5AC195388D20070C39A /* Resources */, 227 | 75AFF594D1E21B3F5F31E77F /* Embed Pods Frameworks */, 228 | 11767C41CABD2763F5A496F8 /* Copy Pods Resources */, 229 | ); 230 | buildRules = ( 231 | ); 232 | dependencies = ( 233 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 234 | ); 235 | name = SCCatWaitingHUD_Tests; 236 | productName = SCCatWaitingHUDTests; 237 | productReference = 6003F5AE195388D20070C39A /* SCCatWaitingHUD_Tests.xctest */; 238 | productType = "com.apple.product-type.bundle.unit-test"; 239 | }; 240 | /* End PBXNativeTarget section */ 241 | 242 | /* Begin PBXProject section */ 243 | 6003F582195388D10070C39A /* Project object */ = { 244 | isa = PBXProject; 245 | attributes = { 246 | CLASSPREFIX = SC; 247 | LastUpgradeCheck = 0510; 248 | ORGANIZATIONNAME = SergioChan; 249 | TargetAttributes = { 250 | 6003F589195388D20070C39A = { 251 | DevelopmentTeam = Q8H99663FH; 252 | }; 253 | 6003F5AD195388D20070C39A = { 254 | TestTargetID = 6003F589195388D20070C39A; 255 | }; 256 | }; 257 | }; 258 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "SCCatWaitingHUD" */; 259 | compatibilityVersion = "Xcode 3.2"; 260 | developmentRegion = English; 261 | hasScannedForEncodings = 0; 262 | knownRegions = ( 263 | en, 264 | Base, 265 | ); 266 | mainGroup = 6003F581195388D10070C39A; 267 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 268 | projectDirPath = ""; 269 | projectRoot = ""; 270 | targets = ( 271 | 6003F589195388D20070C39A /* SCCatWaitingHUD_Example */, 272 | 6003F5AD195388D20070C39A /* SCCatWaitingHUD_Tests */, 273 | ); 274 | }; 275 | /* End PBXProject section */ 276 | 277 | /* Begin PBXResourcesBuildPhase section */ 278 | 6003F588195388D20070C39A /* Resources */ = { 279 | isa = PBXResourcesBuildPhase; 280 | buildActionMask = 2147483647; 281 | files = ( 282 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, 283 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 284 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 285 | ); 286 | runOnlyForDeploymentPostprocessing = 0; 287 | }; 288 | 6003F5AC195388D20070C39A /* Resources */ = { 289 | isa = PBXResourcesBuildPhase; 290 | buildActionMask = 2147483647; 291 | files = ( 292 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 293 | ); 294 | runOnlyForDeploymentPostprocessing = 0; 295 | }; 296 | /* End PBXResourcesBuildPhase section */ 297 | 298 | /* Begin PBXShellScriptBuildPhase section */ 299 | 11767C41CABD2763F5A496F8 /* Copy Pods Resources */ = { 300 | isa = PBXShellScriptBuildPhase; 301 | buildActionMask = 2147483647; 302 | files = ( 303 | ); 304 | inputPaths = ( 305 | ); 306 | name = "Copy Pods Resources"; 307 | outputPaths = ( 308 | ); 309 | runOnlyForDeploymentPostprocessing = 0; 310 | shellPath = /bin/sh; 311 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests-resources.sh\"\n"; 312 | showEnvVarsInLog = 0; 313 | }; 314 | 75AFF594D1E21B3F5F31E77F /* Embed Pods Frameworks */ = { 315 | isa = PBXShellScriptBuildPhase; 316 | buildActionMask = 2147483647; 317 | files = ( 318 | ); 319 | inputPaths = ( 320 | ); 321 | name = "Embed Pods Frameworks"; 322 | outputPaths = ( 323 | ); 324 | runOnlyForDeploymentPostprocessing = 0; 325 | shellPath = /bin/sh; 326 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SCCatWaitingHUD_Tests/Pods-SCCatWaitingHUD_Tests-frameworks.sh\"\n"; 327 | showEnvVarsInLog = 0; 328 | }; 329 | 9EFC23661D28BACFBD6970F6 /* Check Pods Manifest.lock */ = { 330 | isa = PBXShellScriptBuildPhase; 331 | buildActionMask = 2147483647; 332 | files = ( 333 | ); 334 | inputPaths = ( 335 | ); 336 | name = "Check Pods Manifest.lock"; 337 | outputPaths = ( 338 | ); 339 | runOnlyForDeploymentPostprocessing = 0; 340 | shellPath = /bin/sh; 341 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 342 | showEnvVarsInLog = 0; 343 | }; 344 | ABFD6B126FC452D97EE8BA5B /* Embed Pods Frameworks */ = { 345 | isa = PBXShellScriptBuildPhase; 346 | buildActionMask = 2147483647; 347 | files = ( 348 | ); 349 | inputPaths = ( 350 | ); 351 | name = "Embed Pods Frameworks"; 352 | outputPaths = ( 353 | ); 354 | runOnlyForDeploymentPostprocessing = 0; 355 | shellPath = /bin/sh; 356 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example-frameworks.sh\"\n"; 357 | showEnvVarsInLog = 0; 358 | }; 359 | DB5CA06F3E531A3F4CA61CD3 /* Check Pods Manifest.lock */ = { 360 | isa = PBXShellScriptBuildPhase; 361 | buildActionMask = 2147483647; 362 | files = ( 363 | ); 364 | inputPaths = ( 365 | ); 366 | name = "Check Pods Manifest.lock"; 367 | outputPaths = ( 368 | ); 369 | runOnlyForDeploymentPostprocessing = 0; 370 | shellPath = /bin/sh; 371 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 372 | showEnvVarsInLog = 0; 373 | }; 374 | ED3780F63B07DDBF024DC473 /* Copy Pods Resources */ = { 375 | isa = PBXShellScriptBuildPhase; 376 | buildActionMask = 2147483647; 377 | files = ( 378 | ); 379 | inputPaths = ( 380 | ); 381 | name = "Copy Pods Resources"; 382 | outputPaths = ( 383 | ); 384 | runOnlyForDeploymentPostprocessing = 0; 385 | shellPath = /bin/sh; 386 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SCCatWaitingHUD_Example/Pods-SCCatWaitingHUD_Example-resources.sh\"\n"; 387 | showEnvVarsInLog = 0; 388 | }; 389 | /* End PBXShellScriptBuildPhase section */ 390 | 391 | /* Begin PBXSourcesBuildPhase section */ 392 | 6003F586195388D20070C39A /* Sources */ = { 393 | isa = PBXSourcesBuildPhase; 394 | buildActionMask = 2147483647; 395 | files = ( 396 | 6003F59E195388D20070C39A /* SCAppDelegate.m in Sources */, 397 | 6003F5A7195388D20070C39A /* SCViewController.m in Sources */, 398 | 6003F59A195388D20070C39A /* main.m in Sources */, 399 | ); 400 | runOnlyForDeploymentPostprocessing = 0; 401 | }; 402 | 6003F5AA195388D20070C39A /* Sources */ = { 403 | isa = PBXSourcesBuildPhase; 404 | buildActionMask = 2147483647; 405 | files = ( 406 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 407 | ); 408 | runOnlyForDeploymentPostprocessing = 0; 409 | }; 410 | /* End PBXSourcesBuildPhase section */ 411 | 412 | /* Begin PBXTargetDependency section */ 413 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 414 | isa = PBXTargetDependency; 415 | target = 6003F589195388D20070C39A /* SCCatWaitingHUD_Example */; 416 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 417 | }; 418 | /* End PBXTargetDependency section */ 419 | 420 | /* Begin PBXVariantGroup section */ 421 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 422 | isa = PBXVariantGroup; 423 | children = ( 424 | 6003F597195388D20070C39A /* en */, 425 | ); 426 | name = InfoPlist.strings; 427 | sourceTree = ""; 428 | }; 429 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 430 | isa = PBXVariantGroup; 431 | children = ( 432 | 6003F5B9195388D20070C39A /* en */, 433 | ); 434 | name = InfoPlist.strings; 435 | sourceTree = ""; 436 | }; 437 | /* End PBXVariantGroup section */ 438 | 439 | /* Begin XCBuildConfiguration section */ 440 | 6003F5BD195388D20070C39A /* Debug */ = { 441 | isa = XCBuildConfiguration; 442 | buildSettings = { 443 | ALWAYS_SEARCH_USER_PATHS = NO; 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_ERROR; 451 | CLANG_WARN_EMPTY_BODY = YES; 452 | CLANG_WARN_ENUM_CONVERSION = YES; 453 | CLANG_WARN_INT_CONVERSION = YES; 454 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 455 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 456 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 457 | COPY_PHASE_STRIP = NO; 458 | GCC_C_LANGUAGE_STANDARD = gnu99; 459 | GCC_DYNAMIC_NO_PIC = NO; 460 | GCC_OPTIMIZATION_LEVEL = 0; 461 | GCC_PREPROCESSOR_DEFINITIONS = ( 462 | "DEBUG=1", 463 | "$(inherited)", 464 | ); 465 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 466 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 467 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 468 | GCC_WARN_UNDECLARED_SELECTOR = YES; 469 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 470 | GCC_WARN_UNUSED_FUNCTION = YES; 471 | GCC_WARN_UNUSED_VARIABLE = YES; 472 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 473 | ONLY_ACTIVE_ARCH = YES; 474 | SDKROOT = iphoneos; 475 | TARGETED_DEVICE_FAMILY = "1,2"; 476 | }; 477 | name = Debug; 478 | }; 479 | 6003F5BE195388D20070C39A /* Release */ = { 480 | isa = XCBuildConfiguration; 481 | buildSettings = { 482 | ALWAYS_SEARCH_USER_PATHS = NO; 483 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 484 | CLANG_CXX_LIBRARY = "libc++"; 485 | CLANG_ENABLE_MODULES = YES; 486 | CLANG_ENABLE_OBJC_ARC = YES; 487 | CLANG_WARN_BOOL_CONVERSION = YES; 488 | CLANG_WARN_CONSTANT_CONVERSION = YES; 489 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 490 | CLANG_WARN_EMPTY_BODY = YES; 491 | CLANG_WARN_ENUM_CONVERSION = YES; 492 | CLANG_WARN_INT_CONVERSION = YES; 493 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 494 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 495 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 496 | COPY_PHASE_STRIP = YES; 497 | ENABLE_NS_ASSERTIONS = NO; 498 | GCC_C_LANGUAGE_STANDARD = gnu99; 499 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 500 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 501 | GCC_WARN_UNDECLARED_SELECTOR = YES; 502 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 503 | GCC_WARN_UNUSED_FUNCTION = YES; 504 | GCC_WARN_UNUSED_VARIABLE = YES; 505 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 506 | SDKROOT = iphoneos; 507 | TARGETED_DEVICE_FAMILY = "1,2"; 508 | VALIDATE_PRODUCT = YES; 509 | }; 510 | name = Release; 511 | }; 512 | 6003F5C0195388D20070C39A /* Debug */ = { 513 | isa = XCBuildConfiguration; 514 | baseConfigurationReference = A3EF8D5822D182EC1E13CE3C /* Pods-SCCatWaitingHUD_Example.debug.xcconfig */; 515 | buildSettings = { 516 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 517 | CODE_SIGN_IDENTITY = "iPhone Developer"; 518 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 519 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 520 | GCC_PREFIX_HEADER = "SCCatWaitingHUD/SCCatWaitingHUD-Prefix.pch"; 521 | INFOPLIST_FILE = "SCCatWaitingHUD/SCCatWaitingHUD-Info.plist"; 522 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 523 | MODULE_NAME = ExampleApp; 524 | PRODUCT_NAME = "$(TARGET_NAME)"; 525 | PROVISIONING_PROFILE = ""; 526 | WRAPPER_EXTENSION = app; 527 | }; 528 | name = Debug; 529 | }; 530 | 6003F5C1195388D20070C39A /* Release */ = { 531 | isa = XCBuildConfiguration; 532 | baseConfigurationReference = 5CFE4AA53B22DE048FC74463 /* Pods-SCCatWaitingHUD_Example.release.xcconfig */; 533 | buildSettings = { 534 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 535 | CODE_SIGN_IDENTITY = "iPhone Developer"; 536 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 537 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 538 | GCC_PREFIX_HEADER = "SCCatWaitingHUD/SCCatWaitingHUD-Prefix.pch"; 539 | INFOPLIST_FILE = "SCCatWaitingHUD/SCCatWaitingHUD-Info.plist"; 540 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 541 | MODULE_NAME = ExampleApp; 542 | PRODUCT_NAME = "$(TARGET_NAME)"; 543 | PROVISIONING_PROFILE = ""; 544 | WRAPPER_EXTENSION = app; 545 | }; 546 | name = Release; 547 | }; 548 | 6003F5C3195388D20070C39A /* Debug */ = { 549 | isa = XCBuildConfiguration; 550 | baseConfigurationReference = E4EF1942EC877BD9F7F3C136 /* Pods-SCCatWaitingHUD_Tests.debug.xcconfig */; 551 | buildSettings = { 552 | BUNDLE_LOADER = "$(TEST_HOST)"; 553 | FRAMEWORK_SEARCH_PATHS = ( 554 | "$(SDKROOT)/Developer/Library/Frameworks", 555 | "$(inherited)", 556 | "$(DEVELOPER_FRAMEWORKS_DIR)", 557 | ); 558 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 559 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 560 | GCC_PREPROCESSOR_DEFINITIONS = ( 561 | "DEBUG=1", 562 | "$(inherited)", 563 | ); 564 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 565 | PRODUCT_NAME = "$(TARGET_NAME)"; 566 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SCCatWaitingHUD_Example.app/SCCatWaitingHUD_Example"; 567 | WRAPPER_EXTENSION = xctest; 568 | }; 569 | name = Debug; 570 | }; 571 | 6003F5C4195388D20070C39A /* Release */ = { 572 | isa = XCBuildConfiguration; 573 | baseConfigurationReference = B4625CFBB5CFEC04A7FAFFDF /* Pods-SCCatWaitingHUD_Tests.release.xcconfig */; 574 | buildSettings = { 575 | BUNDLE_LOADER = "$(TEST_HOST)"; 576 | FRAMEWORK_SEARCH_PATHS = ( 577 | "$(SDKROOT)/Developer/Library/Frameworks", 578 | "$(inherited)", 579 | "$(DEVELOPER_FRAMEWORKS_DIR)", 580 | ); 581 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 582 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 583 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 584 | PRODUCT_NAME = "$(TARGET_NAME)"; 585 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SCCatWaitingHUD_Example.app/SCCatWaitingHUD_Example"; 586 | WRAPPER_EXTENSION = xctest; 587 | }; 588 | name = Release; 589 | }; 590 | /* End XCBuildConfiguration section */ 591 | 592 | /* Begin XCConfigurationList section */ 593 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "SCCatWaitingHUD" */ = { 594 | isa = XCConfigurationList; 595 | buildConfigurations = ( 596 | 6003F5BD195388D20070C39A /* Debug */, 597 | 6003F5BE195388D20070C39A /* Release */, 598 | ); 599 | defaultConfigurationIsVisible = 0; 600 | defaultConfigurationName = Release; 601 | }; 602 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "SCCatWaitingHUD_Example" */ = { 603 | isa = XCConfigurationList; 604 | buildConfigurations = ( 605 | 6003F5C0195388D20070C39A /* Debug */, 606 | 6003F5C1195388D20070C39A /* Release */, 607 | ); 608 | defaultConfigurationIsVisible = 0; 609 | defaultConfigurationName = Release; 610 | }; 611 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "SCCatWaitingHUD_Tests" */ = { 612 | isa = XCConfigurationList; 613 | buildConfigurations = ( 614 | 6003F5C3195388D20070C39A /* Debug */, 615 | 6003F5C4195388D20070C39A /* Release */, 616 | ); 617 | defaultConfigurationIsVisible = 0; 618 | defaultConfigurationName = Release; 619 | }; 620 | /* End XCConfigurationList section */ 621 | }; 622 | rootObject = 6003F582195388D10070C39A /* Project object */; 623 | } 624 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD.xcodeproj/xcshareddata/xcschemes/SCCatWaitingHUD-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 | 61 | 63 | 69 | 70 | 71 | 72 | 73 | 74 | 80 | 82 | 88 | 89 | 90 | 91 | 93 | 94 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "29x29", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-Small@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "29x29", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-Small@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "40x40", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-Spotlight-40@2x.png", 19 | "scale" : "2x" 20 | }, 21 | { 22 | "size" : "40x40", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-Spotlight-40@3x.png", 25 | "scale" : "3x" 26 | }, 27 | { 28 | "size" : "60x60", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-60@2x.png", 31 | "scale" : "2x" 32 | }, 33 | { 34 | "size" : "60x60", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-60@3x.png", 37 | "scale" : "3x" 38 | }, 39 | { 40 | "size" : "29x29", 41 | "idiom" : "ipad", 42 | "filename" : "Icon-Small.png", 43 | "scale" : "1x" 44 | }, 45 | { 46 | "size" : "29x29", 47 | "idiom" : "ipad", 48 | "filename" : "Icon-Small@2x-1.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "40x40", 53 | "idiom" : "ipad", 54 | "filename" : "Icon-Spotlight-40.png", 55 | "scale" : "1x" 56 | }, 57 | { 58 | "size" : "40x40", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-Spotlight-40@2x-1.png", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "size" : "76x76", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-76.png", 67 | "scale" : "1x" 68 | }, 69 | { 70 | "size" : "76x76", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-76@2x.png", 73 | "scale" : "2x" 74 | } 75 | ], 76 | "info" : { 77 | "version" : 1, 78 | "author" : "xcode" 79 | } 80 | } -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/test.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "IMG_0063.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Images.xcassets/test.imageset/IMG_0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Example/SCCatWaitingHUD/Images.xcassets/test.imageset/IMG_0063.png -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/SCAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // SCAppDelegate.h 3 | // SCCatWaitingHUD 4 | // 5 | // Created by SergioChan on 11/14/2015. 6 | // Copyright (c) 2015 SergioChan. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface SCAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/SCAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // SCAppDelegate.m 3 | // SCCatWaitingHUD 4 | // 5 | // Created by SergioChan on 11/14/2015. 6 | // Copyright (c) 2015 SergioChan. All rights reserved. 7 | // 8 | 9 | #import "SCAppDelegate.h" 10 | 11 | @implementation SCAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | //- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window 20 | //{ 21 | // return UIInterfaceOrientationMaskLandscape || UIInterfaceOrientationPortrait; 22 | //} 23 | 24 | - (void)applicationWillResignActive:(UIApplication *)application 25 | { 26 | // 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. 27 | // 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. 28 | } 29 | 30 | - (void)applicationDidEnterBackground:(UIApplication *)application 31 | { 32 | // 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. 33 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 34 | } 35 | 36 | - (void)applicationWillEnterForeground:(UIApplication *)application 37 | { 38 | // 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. 39 | } 40 | 41 | - (void)applicationDidBecomeActive:(UIApplication *)application 42 | { 43 | // 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. 44 | } 45 | 46 | - (void)applicationWillTerminate:(UIApplication *)application 47 | { 48 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 49 | } 50 | 51 | @end 52 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/SCCatWaitingHUD-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 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 | Main 29 | UIMainStoryboardFile 30 | Main 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UIStatusBarStyle 36 | UIStatusBarStyleLightContent 37 | UISupportedInterfaceOrientations 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationLandscapeLeft 41 | UIInterfaceOrientationLandscapeRight 42 | 43 | UISupportedInterfaceOrientations~ipad 44 | 45 | UIInterfaceOrientationPortrait 46 | UIInterfaceOrientationPortraitUpsideDown 47 | UIInterfaceOrientationLandscapeLeft 48 | UIInterfaceOrientationLandscapeRight 49 | 50 | UIViewControllerBasedStatusBarAppearance 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/SCCatWaitingHUD-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/SCCatWaitingHUD/SCViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SCViewController.h 3 | // SCCatWaitingHUD 4 | // 5 | // Created by SergioChan on 11/14/2015. 6 | // Copyright (c) 2015 SergioChan. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface SCViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/SCViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // SCViewController.m 3 | // SCCatWaitingHUD 4 | // 5 | // Created by SergioChan on 11/14/2015. 6 | // Copyright (c) 2015 SergioChan. All rights reserved. 7 | // 8 | 9 | #import "SCViewController.h" 10 | #import "SCCatWaitingHUD.h" 11 | 12 | @interface SCViewController () 13 | @property (weak, nonatomic) IBOutlet UILabel *hintLabel; 14 | @end 15 | 16 | @implementation SCViewController 17 | 18 | - (void)viewDidLoad 19 | { 20 | [super viewDidLoad]; 21 | self.view.backgroundColor = [UIColor lightGrayColor]; 22 | // Do any additional setup after loading the view, typically from a nib. 23 | } 24 | 25 | - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event 26 | { 27 | if(![SCCatWaitingHUD sharedInstance].isAnimating) 28 | { 29 | [[SCCatWaitingHUD sharedInstance] animateWithInteractionEnabled:YES]; 30 | } 31 | else 32 | { 33 | [[SCCatWaitingHUD sharedInstance] stop]; 34 | } 35 | } 36 | 37 | // For issue #5 38 | //- (void)viewWillAppear:(BOOL)animated 39 | //{ 40 | // [super viewWillAppear:animated]; 41 | // if(![SCCatWaitingHUD sharedInstance].isAnimating) 42 | // { 43 | // [[SCCatWaitingHUD sharedInstance] animateWithInteractionEnabled:YES]; 44 | // } 45 | // else 46 | // { 47 | // [[SCCatWaitingHUD sharedInstance] stop]; 48 | // } 49 | //} 50 | 51 | - (void)didReceiveMemoryWarning 52 | { 53 | [super didReceiveMemoryWarning]; 54 | // Dispose of any resources that can be recreated. 55 | } 56 | 57 | @end 58 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/SCCatWaitingHUD/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SCCatWaitingHUD 4 | // 5 | // Created by SergioChan on 11/14/2015. 6 | // Copyright (c) 2015 SergioChan. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "SCAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) 13 | { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([SCAppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 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/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/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // SCCatWaitingHUDTests.m 3 | // SCCatWaitingHUDTests 4 | // 5 | // Created by SergioChan on 11/14/2015. 6 | // Copyright (c) 2015 SergioChan. 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/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 SergioChan 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Pod/Assets/.gitkeep -------------------------------------------------------------------------------- /Pod/Assets/MAO@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Pod/Assets/MAO@2x.png -------------------------------------------------------------------------------- /Pod/Assets/mouse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Pod/Assets/mouse@2x.png -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Pod/Classes/.gitkeep -------------------------------------------------------------------------------- /Pod/Classes/SCCatWaitingHUD.h: -------------------------------------------------------------------------------- 1 | // 2 | // SCCatWaitingHUD.h 3 | // SCCatWaitingHUD 4 | // 5 | // Created by Yh c on 15/11/13. 6 | // Copyright © 2015年 Animatious. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "UIViewExt.h" 11 | 12 | #define ScreenWidth [[UIScreen mainScreen] bounds].size.width 13 | #define ScreenHeight [[UIScreen mainScreen] bounds].size.height 14 | 15 | #define SCCatWaiting_catPurple [UIColor colorWithRed:75.0f/255.0f green:52.0f/255.0f blue:97.0f/255.0f alpha:0.7f] 16 | #define SCCatWaiting_leftFaceGray [UIColor colorWithRed:200.0f/255.0f green:198.0f/255.0f blue:200.0f/255.0f alpha:1.0f] 17 | #define SCCatWaiting_rightFaceGray [UIColor colorWithRed:213.0f/255.0f green:212.0f/255.0f blue:213.0f/255.0f alpha:1.0f] 18 | 19 | #define SCCatWaiting_animationSize 50.0f 20 | 21 | @interface SCCatWaitingHUD : UIView 22 | 23 | @property (nonatomic, strong) UIWindow *backgroundWindow; 24 | 25 | @property (nonatomic, strong) UIVisualEffectView *blurView; 26 | @property (nonatomic, strong) UIView *indicatorView; 27 | @property (nonatomic, strong) UIImageView *faceView; 28 | @property (nonatomic, strong) UIImageView *mouseView; 29 | @property (nonatomic, strong) UILabel *contentLabel; 30 | 31 | /** 32 | * Status of animation. 33 | */ 34 | @property (nonatomic) BOOL isAnimating; 35 | 36 | /** 37 | * Title of your HUD. Display in contentLabel. Default is 'Loading...' 38 | */ 39 | @property (nonatomic, strong) NSString *title; 40 | 41 | + (SCCatWaitingHUD *) sharedInstance; 42 | - (void)animate; 43 | 44 | /** 45 | * 动画的时候是否允许和原始的View进行交互 46 | * Whether you can interact with the original view while animating 47 | * 48 | * @param enabled YES代表能响应原生View事件,NO代表block当前所有的手势操作 49 | */ 50 | - (void)animateWithInteractionEnabled:(BOOL)enabled; 51 | 52 | /** 53 | * You can attach your HUD title to the view using this animation method. Default title is 'Loading...'. 54 | * 55 | * @param enabled YES代表能响应原生View事件,NO代表block当前所有的手势操作 56 | * @param title HUD title 57 | */ 58 | - (void)animateWithInteractionEnabled:(BOOL)enabled title:(NSString *)title; 59 | 60 | /** 61 | * You can also customize duration for each loop (also can be represented as speed) using this animation method. Default duration is 4.0 seconds each loop. 62 | * 63 | * @param enabled YES代表能响应原生View事件,NO代表block当前所有的手势操作 64 | * @param title HUD title 65 | * @param duration time for each loop 66 | */ 67 | - (void)animateWithInteractionEnabled:(BOOL)enabled title:(NSString *)title duration:(CGFloat)duration; 68 | 69 | - (void)stop; 70 | @end 71 | -------------------------------------------------------------------------------- /Pod/Classes/SCCatWaitingHUD.m: -------------------------------------------------------------------------------- 1 | // 2 | // SCCatWaitingHUD.m 3 | // SCCatWaitingHUD 4 | // 5 | // Created by Yh c on 15/11/13. 6 | // Copyright © 2015年 Animatious. All rights reserved. 7 | // 8 | 9 | #import "SCCatWaitingHUD.h" 10 | #import 11 | 12 | @interface SCCatWaitingHUD() 13 | { 14 | NSTimer *timer; 15 | } 16 | @property (nonatomic, strong) UIView *leftEye; 17 | @property (nonatomic, strong) UIView *rightEye; 18 | 19 | @property (nonatomic, strong) UIView *leftEyeCover; 20 | @property (nonatomic, strong) UIView *rightEyeCover; 21 | 22 | @property (nonatomic) UIInterfaceOrientation previousOrientation; 23 | 24 | // Warning: The parameters below are not recommended to modify by user at runtime. 25 | 26 | /** 27 | * Time duration for HUD display and disappear. 28 | */ 29 | @property (nonatomic) CGFloat easeInDuration; 30 | 31 | /** 32 | * Time duration for each loop. 33 | */ 34 | @property (nonatomic) CGFloat animationDuration; 35 | 36 | @end 37 | 38 | @implementation SCCatWaitingHUD 39 | 40 | + (SCCatWaitingHUD *) sharedInstance 41 | { 42 | static dispatch_once_t onceToken; 43 | static SCCatWaitingHUD * sharedInstance; 44 | dispatch_once(&onceToken, ^{ 45 | sharedInstance = [[SCCatWaitingHUD alloc] initWithFrame:CGRectMake(0.0f,0.0f,ScreenWidth,ScreenHeight)]; 46 | }); 47 | return sharedInstance; 48 | } 49 | 50 | - (id)initWithFrame:(CGRect)frame 51 | { 52 | self = [super initWithFrame:frame]; 53 | if(self) 54 | { 55 | // Recommended duration would be 2.0 seconds. Represents half of the time of each loop. 56 | self.animationDuration = 2.0f; 57 | self.easeInDuration = self.animationDuration * 0.25f; 58 | 59 | [[NSNotificationCenter defaultCenter] addObserver:self 60 | selector:@selector(statusBarOrientationChange:) 61 | name:UIApplicationDidChangeStatusBarOrientationNotification 62 | object:nil]; 63 | 64 | [self initSubViews]; 65 | } 66 | return self; 67 | } 68 | 69 | /** 70 | * 初始化所有子视图 71 | */ 72 | - (void)initSubViews 73 | { 74 | self.backgroundWindow = [[UIWindow alloc]initWithFrame:self.frame]; 75 | _backgroundWindow.windowLevel = UIWindowLevelStatusBar; 76 | _backgroundWindow.backgroundColor = [UIColor clearColor]; 77 | _backgroundWindow.alpha = 0.0f; 78 | _backgroundWindow.rootViewController = [[UIViewController alloc] init]; 79 | self.title = @"Loading..."; 80 | 81 | self.blurView = [[UIVisualEffectView alloc]initWithFrame:self.frame]; 82 | _blurView.effect = nil; 83 | [_backgroundWindow addSubview:_blurView]; 84 | 85 | self.userInteractionEnabled = NO; 86 | _backgroundWindow.userInteractionEnabled = NO; 87 | self.isAnimating = NO; 88 | 89 | self.indicatorView = [[UIView alloc]initWithFrame:CGRectMake(ScreenWidth/2.0f - (SCCatWaiting_animationSize * 4.0f)/2.0f, ScreenHeight/2.0f - (SCCatWaiting_animationSize * 4.0f)/2.0f, SCCatWaiting_animationSize * 4.0f, SCCatWaiting_animationSize * 4.0f)]; 90 | _indicatorView.backgroundColor = SCCatWaiting_catPurple; 91 | _indicatorView.layer.cornerRadius = 6.0f; 92 | _indicatorView.alpha = 0.0f; 93 | [_backgroundWindow addSubview:_indicatorView]; 94 | 95 | NSString *bundlePath = [[NSBundle bundleForClass:[SCCatWaitingHUD class]] 96 | pathForResource:@"SCCatWaitingHUD" ofType:@"bundle"]; 97 | NSBundle *bundle = [NSBundle bundleWithPath:bundlePath]; 98 | 99 | CGFloat width = SCCatWaiting_animationSize; 100 | self.faceView = [[UIImageView alloc]initWithFrame:CGRectMake(_indicatorView.width/2.0f - width/2.0f, _indicatorView.height/2.0f - width/2.0f - 20.0f, width, width)]; 101 | _faceView.contentMode = UIViewContentModeScaleAspectFill; 102 | _faceView.backgroundColor = [UIColor clearColor]; 103 | _faceView.image = [UIImage imageNamed:@"MAO@2x" inBundle:bundle compatibleWithTraitCollection:nil]; 104 | [_indicatorView addSubview:_faceView]; 105 | 106 | self.leftEye = [[UIView alloc]initWithFrame:CGRectMake(self.faceView.left + 8.0f, self.faceView.top + width/3.0f + 1.0f, 5.0f, 5.0f)]; 107 | _leftEye.layer.masksToBounds = YES; 108 | _leftEye.layer.cornerRadius = 2.5f; 109 | _leftEye.backgroundColor = [UIColor blackColor]; 110 | _leftEye.layer.anchorPoint = CGPointMake(1.5f, 1.5f); 111 | _leftEye.layer.position = CGPointMake(self.faceView.left + 13.5f,self.faceView.top + width/3.0f + 7.5f); 112 | [_indicatorView addSubview:_leftEye]; 113 | 114 | // Note : 比例是从sketch中算出来的 115 | self.leftEyeCover = [[UIView alloc]initWithFrame:CGRectMake(self.faceView.left + width / 15.0f, self.leftEye.top - 5.0f - width/8.0f, width * 0.42f, width/10.0f)]; 116 | _leftEyeCover.backgroundColor = SCCatWaiting_leftFaceGray; 117 | _leftEyeCover.layer.anchorPoint = CGPointMake(0.5, 0.0f); 118 | [_indicatorView addSubview:_leftEyeCover]; 119 | 120 | self.rightEye = [[UIView alloc]initWithFrame:CGRectMake(self.leftEye.right + width/3.0f + 1.0f, self.faceView.top + width/3.0f + 1.0f, 5.0f, 5.0f)]; 121 | _rightEye.layer.masksToBounds = YES; 122 | _rightEye.layer.cornerRadius = 2.5f; 123 | _rightEye.backgroundColor = [UIColor blackColor]; 124 | _rightEye.layer.anchorPoint = CGPointMake(1.5f, 1.5f); 125 | _rightEye.layer.position = CGPointMake(self.faceView.right - 13.5f, self.faceView.top + width/3.0f + 7.5f); 126 | [_indicatorView addSubview:_rightEye]; 127 | 128 | self.rightEyeCover = [[UIView alloc]initWithFrame:CGRectMake(self.faceView.left + width * 0.52f, self.rightEye.top - 5.0f - width/8.0f, width * 0.42f, width/10.0f)]; 129 | _rightEyeCover.backgroundColor = SCCatWaiting_rightFaceGray; 130 | _rightEyeCover.layer.anchorPoint = CGPointMake(0.5, 0.0f); 131 | [_indicatorView addSubview:_rightEyeCover]; 132 | 133 | self.mouseView = [[UIImageView alloc]initWithFrame:CGRectMake(_indicatorView.width/2.0f - width * 1.25f, _indicatorView.height/2.0f - width * 1.25f - 20.0f, width * 2.5f, width * 2.5f)]; 134 | _mouseView.contentMode = UIViewContentModeScaleAspectFill; 135 | _mouseView.backgroundColor = [UIColor clearColor]; 136 | _mouseView.image = [UIImage imageNamed:@"mouse@2x" inBundle:bundle compatibleWithTraitCollection:nil]; 137 | [_indicatorView addSubview:_mouseView]; 138 | 139 | self.contentLabel = [[UILabel alloc]initWithFrame:CGRectMake(20.0f,self.mouseView.bottom + 15.0f,0.0f,25.0f)]; 140 | //_contentLabel.text = self.title; 141 | _contentLabel.textColor = [UIColor whiteColor]; 142 | _contentLabel.font = [UIFont systemFontOfSize:20.0f]; 143 | _contentLabel.lineBreakMode = NSLineBreakByClipping; 144 | _contentLabel.numberOfLines = 1; 145 | _contentLabel.alpha = 1.0f; 146 | // Set a limitation here. 147 | _contentLabel.textAlignment = NSTextAlignmentCenter; 148 | [_indicatorView addSubview:_contentLabel]; 149 | } 150 | 151 | - (void)statusBarOrientationChange:(NSNotification *)notification 152 | { 153 | if(!_isAnimating) 154 | { 155 | // 若不在显示状态则不需要响应旋转 156 | return; 157 | } 158 | 159 | UIInterfaceOrientation oriention = [UIApplication sharedApplication].statusBarOrientation; 160 | 161 | CGFloat degree = 0.0f; 162 | switch (oriention) { 163 | case UIInterfaceOrientationLandscapeLeft: 164 | { 165 | if(self.previousOrientation == UIInterfaceOrientationLandscapeRight) 166 | { 167 | degree = -180.0f; 168 | } 169 | else if(self.previousOrientation == UIInterfaceOrientationPortrait) 170 | { 171 | degree = -90.0f; 172 | } 173 | } 174 | break; 175 | case UIInterfaceOrientationLandscapeRight: 176 | { 177 | if(self.previousOrientation == UIInterfaceOrientationLandscapeLeft) 178 | { 179 | degree = 180.0f; 180 | } 181 | else if(self.previousOrientation == UIInterfaceOrientationPortrait) 182 | { 183 | degree = 90.0f; 184 | } 185 | } 186 | break; 187 | case UIInterfaceOrientationPortrait: 188 | { 189 | if(self.previousOrientation == UIInterfaceOrientationLandscapeRight) 190 | { 191 | degree = -90.0f; 192 | } 193 | else if(self.previousOrientation == UIInterfaceOrientationLandscapeLeft) 194 | { 195 | degree = 90.0f; 196 | } 197 | } 198 | break; 199 | default: 200 | break; 201 | } 202 | 203 | self.previousOrientation = oriention; 204 | CGAffineTransform transform = _indicatorView.transform; 205 | transform = CGAffineTransformRotate(transform, radians(degree)); 206 | _indicatorView.transform = transform; 207 | } 208 | 209 | - (void)animateWithInteractionEnabled:(BOOL)enabled title:(NSString *)title duration:(CGFloat)duration 210 | { 211 | if(title) 212 | self.title = title; 213 | self.animationDuration = duration / 2.0f; 214 | [self animateWithInteractionEnabled:enabled]; 215 | } 216 | 217 | - (void)animateWithInteractionEnabled:(BOOL)enabled title:(NSString *)title 218 | { 219 | if(title) 220 | self.title = title; 221 | [self animateWithInteractionEnabled:enabled]; 222 | } 223 | 224 | - (void)animateWithInteractionEnabled:(BOOL)enabled 225 | { 226 | UIInterfaceOrientation oriention = [UIApplication sharedApplication].statusBarOrientation; 227 | self.previousOrientation = oriention; 228 | if(oriention == UIInterfaceOrientationPortrait) 229 | { 230 | _blurView.frame = CGRectMake(0.0f, 0.0f, ScreenWidth, ScreenHeight); 231 | _indicatorView.frame = CGRectMake(ScreenWidth/2.0f - (SCCatWaiting_animationSize * 4.0f)/2.0f, ScreenHeight/2.0f - (SCCatWaiting_animationSize * 4.0f)/2.0f, SCCatWaiting_animationSize * 4.0f, SCCatWaiting_animationSize * 4.0f); 232 | } 233 | else if(oriention == UIInterfaceOrientationLandscapeRight) 234 | { 235 | _blurView.frame = CGRectMake(0.0f, 0.0f, ScreenHeight, ScreenWidth); 236 | _indicatorView.frame = CGRectMake(ScreenHeight/2.0f - (SCCatWaiting_animationSize * 4.0f)/2.0f, ScreenWidth/2.0f - (SCCatWaiting_animationSize * 4.0f)/2.0f, SCCatWaiting_animationSize * 4.0f, SCCatWaiting_animationSize * 4.0f); 237 | CGAffineTransform transform = _indicatorView.transform; 238 | transform = CGAffineTransformRotate(transform, radians(90.0f)); 239 | _indicatorView.transform = transform; 240 | } 241 | else if(oriention == UIInterfaceOrientationLandscapeLeft) 242 | { 243 | _blurView.frame = CGRectMake(0.0f, 0.0f, ScreenHeight, ScreenWidth); 244 | _indicatorView.frame = CGRectMake(ScreenHeight/2.0f - (SCCatWaiting_animationSize * 4.0f)/2.0f, ScreenWidth/2.0f - (SCCatWaiting_animationSize * 4.0f)/2.0f, SCCatWaiting_animationSize * 4.0f, SCCatWaiting_animationSize * 4.0f); 245 | CGAffineTransform transform = _indicatorView.transform; 246 | transform = CGAffineTransformRotate(transform, radians(-90.0f)); 247 | _indicatorView.transform = transform; 248 | } 249 | 250 | [self configureContentLabelText]; 251 | 252 | self.userInteractionEnabled = !enabled; 253 | _backgroundWindow.userInteractionEnabled = !enabled; 254 | 255 | if(_isAnimating) 256 | { 257 | return; 258 | } 259 | 260 | _isAnimating = YES; 261 | [_backgroundWindow makeKeyAndVisible]; 262 | timer = [NSTimer scheduledTimerWithTimeInterval:self.animationDuration * 2.0f target:self selector:@selector(timerUpdate:) userInfo:nil repeats:YES]; 263 | [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes]; 264 | [timer fire]; 265 | 266 | [_leftEyeCover.layer addAnimation:[self scaleAnimation] forKey:@"scale"]; 267 | [_rightEyeCover.layer addAnimation:[self scaleAnimation] forKey:@"scale"]; 268 | 269 | [self performSelector:@selector(beginRotate) withObject:nil afterDelay:self.animationDuration * 0.25f]; 270 | 271 | _backgroundWindow.alpha = 1.0f; 272 | 273 | [UIView animateWithDuration:_easeInDuration delay:0.25f options:UIViewAnimationCurveEaseInOut animations:^{ 274 | _blurView.effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; 275 | _indicatorView.alpha = 1.0f; 276 | } completion:^(BOOL finished) { 277 | }]; 278 | } 279 | 280 | - (void)beginRotate 281 | { 282 | [_mouseView.layer addAnimation:[self rotationAnimation] forKey:@"rotate"]; 283 | [_leftEye.layer addAnimation:[self rotationAnimation] forKey:@"rotate"]; 284 | [_rightEye.layer addAnimation:[self rotationAnimation] forKey:@"rotate"]; 285 | } 286 | 287 | - (void)animate 288 | { 289 | [self animateWithInteractionEnabled:YES]; 290 | } 291 | 292 | - (void)stop 293 | { 294 | if(!_isAnimating) 295 | { 296 | return; 297 | } 298 | 299 | [timer invalidate]; 300 | timer = nil; 301 | self.contentLabel.attributedText = nil; 302 | self.contentLabel.frame = CGRectMake(20.0f,self.mouseView.bottom + 15.0f,0.0f,25.0f); 303 | self.contentLabel.alpha = 1.0f; 304 | [self.contentLabel.layer removeAllAnimations]; 305 | // 一定要在结束的时候清空这个layer所附带的所有动画,否则会在下一次出现的时候重新显示未完成的动画 306 | 307 | [UIView animateWithDuration:_easeInDuration delay:0.0f options:UIViewAnimationCurveEaseInOut animations:^{ 308 | _blurView.effect = nil; 309 | _indicatorView.alpha = 0.0f; 310 | } completion:^(BOOL finished) { 311 | CGAffineTransform transform = CGAffineTransformIdentity; 312 | //transform = CGAffineTransformRotate(transform, radians(0.0f)); 313 | _indicatorView.transform = transform; 314 | _isAnimating = NO; 315 | _backgroundWindow.alpha = 0.0f; 316 | _backgroundWindow.hidden = YES; 317 | 318 | 319 | // According to Apple Doc : This is a convenience method to make the receiver the main window and displays it in front of other windows at the same window level or lower. You can also hide and reveal a window using the inherited hidden property of UIView. 320 | [_mouseView.layer removeAnimationForKey:@"rotate"]; 321 | [_leftEye.layer removeAnimationForKey:@"rotate"]; 322 | [_rightEye.layer removeAnimationForKey:@"rotate"]; 323 | 324 | [_leftEyeCover.layer removeAnimationForKey:@"scale"]; 325 | [_rightEyeCover.layer removeAnimationForKey:@"scale"]; 326 | }]; 327 | } 328 | 329 | /** 330 | * 处理Label中的文本间距 331 | */ 332 | - (void)configureContentLabelText 333 | { 334 | NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:self.title]; 335 | long number = 5; 336 | CFNumberRef num = CFNumberCreate(kCFAllocatorDefault,kCFNumberSInt8Type,&number); 337 | [attributedString addAttribute:(id)kCTKernAttributeName value:(__bridge id)num range:NSMakeRange(0,[attributedString length])]; 338 | CFRelease(num); 339 | 340 | self.contentLabel.attributedText = attributedString; 341 | } 342 | 343 | - (void)timerUpdate:(id)sender 344 | { 345 | [UIView animateWithDuration:self.animationDuration * 1.6f delay:0.0f options:UIViewAnimationOptionCurveEaseIn animations:^{ 346 | self.contentLabel.width = _indicatorView.width - 40.0f; 347 | self.contentLabel.alpha = 0.0f; 348 | } completion:^(BOOL finished) { 349 | self.contentLabel.alpha = 1.0f; 350 | self.contentLabel.width = 0.0f; 351 | }]; 352 | } 353 | 354 | - (CABasicAnimation *)rotationAnimation 355 | { 356 | CABasicAnimation *rotationAnimation; 357 | rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform"]; 358 | rotationAnimation.fromValue = [NSValue valueWithCATransform3D:getTransForm3DWithAngle(0.0f)]; 359 | rotationAnimation.toValue = [NSValue valueWithCATransform3D:getTransForm3DWithAngle(radians(180.0f))]; 360 | rotationAnimation.duration = self.animationDuration; 361 | rotationAnimation.cumulative = YES; 362 | rotationAnimation.repeatCount = HUGE_VALF; 363 | rotationAnimation.removedOnCompletion=NO; 364 | rotationAnimation.fillMode=kCAFillModeForwards; 365 | rotationAnimation.autoreverses = NO; 366 | rotationAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]; 367 | return rotationAnimation; 368 | } 369 | 370 | - (CAAnimationGroup *)scaleAnimation 371 | { 372 | // 眼皮和眼珠需要确定一个运动时间曲线 373 | CABasicAnimation *scaleAnimation; 374 | scaleAnimation = [CABasicAnimation animationWithKeyPath:@"transform"]; 375 | scaleAnimation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity]; 376 | scaleAnimation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeScale(1.0, 3.0, 1.0)]; 377 | scaleAnimation.duration = self.animationDuration; 378 | scaleAnimation.cumulative = YES; 379 | scaleAnimation.repeatCount = 1; 380 | scaleAnimation.removedOnCompletion= NO; 381 | scaleAnimation.fillMode=kCAFillModeForwards; 382 | scaleAnimation.autoreverses = NO; 383 | scaleAnimation.timingFunction = [CAMediaTimingFunction functionWithControlPoints:0.2:0.0 :0.8 :1.0]; 384 | scaleAnimation.speed = 1.0f; 385 | scaleAnimation.beginTime = 0.0f; 386 | 387 | 388 | CAAnimationGroup *group = [CAAnimationGroup animation]; 389 | group.duration = self.animationDuration; 390 | group.repeatCount = HUGE_VALF; 391 | group.removedOnCompletion= NO; 392 | group.fillMode=kCAFillModeForwards; 393 | group.autoreverses = YES; 394 | group.timingFunction = [CAMediaTimingFunction functionWithControlPoints:0.2:0.0:0.8 :1.0]; 395 | 396 | group.animations = [NSArray arrayWithObjects:scaleAnimation, nil]; 397 | return group; 398 | } 399 | 400 | @end 401 | -------------------------------------------------------------------------------- /Pod/Classes/UIViewExt.h: -------------------------------------------------------------------------------- 1 | /* 2 | Erica Sadun, http://ericasadun.com 3 | iPhone Developer's Cookbook, 3.0 Edition 4 | BSD License, Use at your own risk 5 | */ 6 | 7 | #import 8 | 9 | CGPoint CGRectGetCenter(CGRect rect); 10 | CGRect CGRectMoveToCenter(CGRect rect, CGPoint center); 11 | double radians(float degrees); 12 | CATransform3D getTransForm3DWithAngle(CGFloat angle); 13 | 14 | @interface UIView (ViewFrameGeometry) 15 | @property CGPoint origin; 16 | @property CGSize size; 17 | 18 | @property (readonly) CGPoint bottomLeft; 19 | @property (readonly) CGPoint bottomRight; 20 | @property (readonly) CGPoint topRight; 21 | 22 | @property CGFloat height; 23 | @property CGFloat width; 24 | 25 | @property CGFloat top; 26 | @property CGFloat left; 27 | 28 | @property CGFloat bottom; 29 | @property CGFloat right; 30 | 31 | - (void) moveBy: (CGPoint) delta; 32 | - (void) scaleBy: (CGFloat) scaleFactor; 33 | - (void) fitInSize: (CGSize) aSize; 34 | 35 | - (UIImage *)convertViewToImage; 36 | @end -------------------------------------------------------------------------------- /Pod/Classes/UIViewExt.m: -------------------------------------------------------------------------------- 1 | /* 2 | Erica Sadun, http://ericasadun.com 3 | iPhone Developer's Cookbook, 3.0 Edition 4 | BSD License, Use at your own risk 5 | */ 6 | 7 | #import "UIViewExt.h" 8 | 9 | CGPoint CGRectGetCenter(CGRect rect) 10 | { 11 | CGPoint pt; 12 | pt.x = CGRectGetMidX(rect); 13 | pt.y = CGRectGetMidY(rect); 14 | return pt; 15 | } 16 | 17 | double radians(float degrees) { 18 | return ( degrees * 3.14159265 ) / 180.0; 19 | } 20 | 21 | CATransform3D getTransForm3DWithAngle(CGFloat angle) 22 | { 23 | CATransform3D transform = CATransform3DIdentity; 24 | transform = CATransform3DRotate(transform, angle, 0, 0, 1); 25 | return transform; 26 | } 27 | 28 | CGRect CGRectMoveToCenter(CGRect rect, CGPoint center) 29 | { 30 | CGRect newrect = CGRectZero; 31 | newrect.origin.x = center.x-CGRectGetMidX(rect); 32 | newrect.origin.y = center.y-CGRectGetMidY(rect); 33 | newrect.size = rect.size; 34 | return newrect; 35 | } 36 | 37 | @implementation UIView (ViewGeometry) 38 | 39 | // Retrieve and set the origin 40 | - (CGPoint) origin 41 | { 42 | return self.frame.origin; 43 | } 44 | 45 | - (void) setOrigin: (CGPoint) aPoint 46 | { 47 | CGRect newframe = self.frame; 48 | newframe.origin = aPoint; 49 | self.frame = newframe; 50 | } 51 | 52 | 53 | // Retrieve and set the size 54 | - (CGSize) size 55 | { 56 | return self.frame.size; 57 | } 58 | 59 | - (void) setSize: (CGSize) aSize 60 | { 61 | CGRect newframe = self.frame; 62 | newframe.size = aSize; 63 | self.frame = newframe; 64 | } 65 | 66 | // Query other frame locations 67 | - (CGPoint) bottomRight 68 | { 69 | CGFloat x = self.frame.origin.x + self.frame.size.width; 70 | CGFloat y = self.frame.origin.y + self.frame.size.height; 71 | return CGPointMake(x, y); 72 | } 73 | 74 | - (CGPoint) bottomLeft 75 | { 76 | CGFloat x = self.frame.origin.x; 77 | CGFloat y = self.frame.origin.y + self.frame.size.height; 78 | return CGPointMake(x, y); 79 | } 80 | 81 | - (CGPoint) topRight 82 | { 83 | CGFloat x = self.frame.origin.x + self.frame.size.width; 84 | CGFloat y = self.frame.origin.y; 85 | return CGPointMake(x, y); 86 | } 87 | 88 | 89 | // Retrieve and set height, width, top, bottom, left, right 90 | - (CGFloat) height 91 | { 92 | return self.frame.size.height; 93 | } 94 | 95 | - (void) setHeight: (CGFloat) newheight 96 | { 97 | CGRect newframe = self.frame; 98 | newframe.size.height = newheight; 99 | self.frame = newframe; 100 | } 101 | 102 | - (CGFloat) width 103 | { 104 | return self.frame.size.width; 105 | } 106 | 107 | - (void) setWidth: (CGFloat) newwidth 108 | { 109 | CGRect newframe = self.frame; 110 | newframe.size.width = newwidth; 111 | self.frame = newframe; 112 | } 113 | 114 | - (CGFloat) top 115 | { 116 | return self.frame.origin.y; 117 | } 118 | 119 | - (void) setTop: (CGFloat) newtop 120 | { 121 | CGRect newframe = self.frame; 122 | newframe.origin.y = newtop; 123 | self.frame = newframe; 124 | } 125 | 126 | - (CGFloat) left 127 | { 128 | return self.frame.origin.x; 129 | } 130 | 131 | - (void) setLeft: (CGFloat) newleft 132 | { 133 | CGRect newframe = self.frame; 134 | newframe.origin.x = newleft; 135 | self.frame = newframe; 136 | } 137 | 138 | - (CGFloat) bottom 139 | { 140 | return self.frame.origin.y + self.frame.size.height; 141 | } 142 | 143 | - (void) setBottom: (CGFloat) newbottom 144 | { 145 | CGRect newframe = self.frame; 146 | newframe.origin.y = newbottom - self.frame.size.height; 147 | self.frame = newframe; 148 | } 149 | 150 | - (CGFloat) right 151 | { 152 | return self.frame.origin.x + self.frame.size.width; 153 | } 154 | 155 | - (void) setRight: (CGFloat) newright 156 | { 157 | CGFloat delta = newright - (self.frame.origin.x + self.frame.size.width); 158 | CGRect newframe = self.frame; 159 | newframe.origin.x += delta ; 160 | self.frame = newframe; 161 | } 162 | 163 | // Move via offset 164 | - (void) moveBy: (CGPoint) delta 165 | { 166 | CGPoint newcenter = self.center; 167 | newcenter.x += delta.x; 168 | newcenter.y += delta.y; 169 | self.center = newcenter; 170 | } 171 | 172 | // Scaling 173 | - (void) scaleBy: (CGFloat) scaleFactor 174 | { 175 | CGRect newframe = self.frame; 176 | newframe.size.width *= scaleFactor; 177 | newframe.size.height *= scaleFactor; 178 | self.frame = newframe; 179 | } 180 | 181 | // Ensure that both dimensions fit within the given size by scaling down 182 | - (void) fitInSize: (CGSize) aSize 183 | { 184 | CGFloat scale; 185 | CGRect newframe = self.frame; 186 | 187 | if (newframe.size.height && (newframe.size.height > aSize.height)) 188 | { 189 | scale = aSize.height / newframe.size.height; 190 | newframe.size.width *= scale; 191 | newframe.size.height *= scale; 192 | } 193 | 194 | if (newframe.size.width && (newframe.size.width >= aSize.width)) 195 | { 196 | scale = aSize.width / newframe.size.width; 197 | newframe.size.width *= scale; 198 | newframe.size.height *= scale; 199 | } 200 | 201 | self.frame = newframe; 202 | } 203 | 204 | - (UIImage *)convertViewToImage 205 | { 206 | CGSize s = self.bounds.size; 207 | //下面方法,第一个参数表示区域大小。 208 | //第二个参数表示是否是非透明的。如果需要显示半透明效果,需要传NO,否则传YES。 209 | //第三个参数就是屏幕密度。 210 | 211 | UIGraphicsBeginImageContextWithOptions(s, NO, [UIScreen mainScreen].scale); 212 | [self.layer renderInContext:UIGraphicsGetCurrentContext()]; 213 | UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); 214 | UIGraphicsEndImageContext(); 215 | return image; 216 | } 217 | @end -------------------------------------------------------------------------------- /Preview/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Preview/preview.gif -------------------------------------------------------------------------------- /Preview/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/cc5feddc770f6c3d5ee266e855d6308145df95b0/Preview/preview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SCCatWaitingHUD 2 | 3 | This is a cute and simple loading HUD :-P Enjoy! 4 | 这是一个可爱清新简单的加载HUD控件 :-P 5 | 6 | [![CI Status](http://img.shields.io/travis/SergioChan/SCCatWaitingHUD.svg?style=flat)](https://travis-ci.org/SergioChan/SCCatWaitingHUD) 7 | [![Version](https://img.shields.io/cocoapods/v/SCCatWaitingHUD.svg?style=flat)](http://cocoapods.org/pods/SCCatWaitingHUD) 8 | [![License](https://img.shields.io/cocoapods/l/SCCatWaitingHUD.svg?style=flat)](http://cocoapods.org/pods/SCCatWaitingHUD) 9 | [![Platform](https://img.shields.io/cocoapods/p/SCCatWaitingHUD.svg?style=flat)](http://cocoapods.org/pods/SCCatWaitingHUD) 10 | 11 | ## Preview 预览 12 | 13 | ![image](https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/master/Preview/preview.png) 14 | 15 | ![image](https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/master/Preview/preview.gif) 16 | 17 | ## Usage 用法 18 | 19 | 你可以在[这里](http://anius.io/2015/11/25/SCCatWaitingHUD/)看到详细的实现原理。 20 | 21 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 22 | 想要运行示例工程,将这个仓库clone到本地,在`Example`目录下运行`pod install`。 23 | 24 | Simply use as below : 25 | 用法很简单: 26 | 27 | ```Objective-C 28 | if(![SCCatWaitingHUD sharedInstance].isAnimating) 29 | { 30 | [[SCCatWaitingHUD sharedInstance] animate]; 31 | } 32 | else 33 | { 34 | [[SCCatWaitingHUD sharedInstance] stop]; 35 | } 36 | ``` 37 | 38 | Here I provided you several complex ways to call the `animate` method. 39 | 有些加载交互是需要block用户当前操作的,因此在这里我提供了两种更复杂一些的方式来调用`animate`方法。 40 | 41 | ```Objective-C 42 | /** 43 | * 动画的时候是否允许和原始的View进行交互 44 | * Whether you can interact with the original view while animating 45 | * 46 | * @param enabled YES代表能响应原生View事件,NO代表block当前所有的手势操作 47 | */ 48 | - (void)animateWithInteractionEnabled:(BOOL)enabled; 49 | 50 | /** 51 | * You can attach your HUD title to the view using this animation method. 52 | * 53 | * @param enabled YES代表能响应原生View事件,NO代表block当前所有的手势操作 54 | * @param title HUD title 55 | */ 56 | - (void)animateWithInteractionEnabled:(BOOL)enabled title:(NSString *)title; 57 | ``` 58 | 59 | Moreover, I provided a new method to call `animate` in version 0.1.6 that can give you ablity to customize the duration for each loop. 60 | 另外我在0.1.6版本提供了一个更新的调用 `animate` 方法的接口,可以让你自定义每转一圈的时长,从而修改旋转的速度,默认值是4秒一圈,在这个速度上看老鼠跑的不会异常的快,当然提供给你这个方法是让你可以让它跑得更快。 61 | 62 | ```Objective-C 63 | /** 64 | * You can also customize duration for each loop (also can be represented as speed) using this animation method. Default duration is 4.0 seconds each loop. 65 | * 66 | * @param enabled YES代表能响应原生View事件,NO代表block当前所有的手势操作 67 | * @param title HUD title 68 | * @param duration time for each loop 69 | */ 70 | - (void)animateWithInteractionEnabled:(BOOL)enabled title:(NSString *)title duration:(CGFloat)duration; 71 | ``` 72 | ## BackLog 更新日志 73 | * v0.1.0 Basic Version 74 | * v0.1.1 Add Landscape Orientation Support 75 | * v0.1.4 Add eye cover and Loading contentLabel animation 76 | * v0.1.5 Finish perfect timing function for eye cover movement and polish some of the codes 77 | * v0.1.6 Add a new animate method that can customize duration for each loop 78 | 79 | -- 80 | 81 | * v0.1.0 基本版本 82 | * v0.1.1 支持横屏 83 | * v0.1.4 添加眼皮运动和下方Loading字样的Label 84 | * v0.1.5 优化代码结构,精确调整了眼皮和眼珠的运动时间曲线 85 | * v0.1.6 添加一个新的animate方法入口 86 | 87 | ## Requirements 版本需求 88 | iOS 8.0 Above 89 | 90 | ## Installation 安装 91 | 92 | SCCatWaitingHUD is available through [CocoaPods](http://cocoapods.org). To install 93 | it, simply add the following line to your Podfile: 94 | 95 | ```ruby 96 | pod 'SCCatWaitingHUD', '~> 0.1.6' 97 | ``` 98 | 99 | ## License 100 | 101 | SCCatWaitingHUD is available under the MIT license. See the LICENSE file for more info. 102 | -------------------------------------------------------------------------------- /SCCatWaitingHUD.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint SCCatWaitingHUD.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 = "SCCatWaitingHUD" 11 | s.version = "0.1.6" 12 | s.summary = "Cute and simple waiting HUD indicator on iOS" 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 | s.description = "Cute and simple waiting HUD indicator on iOS." 20 | 21 | s.homepage = "https://github.com/SergioChan/SCCatWaitingHUD" 22 | s.screenshots = "https://raw.githubusercontent.com/SergioChan/SCCatWaitingHUD/master/Preview/preview.png" 23 | s.license = 'MIT' 24 | s.author = { "SergioChan" => "yuheng9211@qq.com" } 25 | s.source = { :git => "https://github.com/SergioChan/SCCatWaitingHUD.git", :tag => s.version.to_s } 26 | # s.social_media_url = 'https://twitter.com/' 27 | 28 | s.platform = :ios, '8.0' 29 | s.requires_arc = true 30 | 31 | s.source_files = 'Pod/Classes/**/*' 32 | s.resource_bundles = { 33 | 'SCCatWaitingHUD' => ['Pod/Assets/*.png'] 34 | } 35 | 36 | # s.public_header_files = 'Pod/Classes/**/*.h' 37 | # s.frameworks = 'UIKit', 'MapKit' 38 | # s.dependency 'AFNetworking', '~> 2.3' 39 | end 40 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------