├── .gitignore ├── .travis.yml ├── HUDemo.gif ├── LCProgressHUD.podspec ├── LCProgressHUD ├── LCProgressHUD.bundle │ ├── hud_error.png │ ├── hud_error@2x.png │ ├── hud_info.png │ ├── hud_info@2x.png │ ├── hud_success.png │ └── hud_success@2x.png ├── LCProgressHUD.h └── LCProgressHUD.m ├── LCProgressHUDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── LCProgressHUDemo.xccheckout └── xcuserdata │ └── Leo.xcuserdatad │ └── xcschemes │ ├── LCProgressHUDemo.xcscheme │ └── xcschememanagement.plist ├── LCProgressHUDemo.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── Leo.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── LCProgressHUDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── LCProgressHUDemoTests ├── Info.plist └── LCProgressHUDemoTests.m ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ └── MBProgressHUD │ │ │ └── MBProgressHUD.h │ └── Public │ │ └── MBProgressHUD │ │ └── MBProgressHUD.h ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── Leo.xcuserdatad │ │ └── xcschemes │ │ ├── MBProgressHUD.xcscheme │ │ ├── Pods-LCProgressHUDemo.xcscheme │ │ ├── Pods-LCProgressHUDemoTests.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── MBProgressHUD │ ├── MBProgressHUD-dummy.m │ ├── MBProgressHUD-prefix.pch │ └── MBProgressHUD.xcconfig │ ├── Pods-LCProgressHUDemo │ ├── Pods-LCProgressHUDemo-acknowledgements.markdown │ ├── Pods-LCProgressHUDemo-acknowledgements.plist │ ├── Pods-LCProgressHUDemo-dummy.m │ ├── Pods-LCProgressHUDemo-frameworks.sh │ ├── Pods-LCProgressHUDemo-resources.sh │ ├── Pods-LCProgressHUDemo.debug.xcconfig │ └── Pods-LCProgressHUDemo.release.xcconfig │ └── Pods-LCProgressHUDemoTests │ ├── Pods-LCProgressHUDemoTests-acknowledgements.markdown │ ├── Pods-LCProgressHUDemoTests-acknowledgements.plist │ ├── Pods-LCProgressHUDemoTests-dummy.m │ ├── Pods-LCProgressHUDemoTests-frameworks.sh │ ├── Pods-LCProgressHUDemoTests-resources.sh │ ├── Pods-LCProgressHUDemoTests.debug.xcconfig │ └── Pods-LCProgressHUDemoTests.release.xcconfig └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/.travis.yml -------------------------------------------------------------------------------- /HUDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/HUDemo.gif -------------------------------------------------------------------------------- /LCProgressHUD.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUD.podspec -------------------------------------------------------------------------------- /LCProgressHUD/LCProgressHUD.bundle/hud_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUD/LCProgressHUD.bundle/hud_error.png -------------------------------------------------------------------------------- /LCProgressHUD/LCProgressHUD.bundle/hud_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUD/LCProgressHUD.bundle/hud_error@2x.png -------------------------------------------------------------------------------- /LCProgressHUD/LCProgressHUD.bundle/hud_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUD/LCProgressHUD.bundle/hud_info.png -------------------------------------------------------------------------------- /LCProgressHUD/LCProgressHUD.bundle/hud_info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUD/LCProgressHUD.bundle/hud_info@2x.png -------------------------------------------------------------------------------- /LCProgressHUD/LCProgressHUD.bundle/hud_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUD/LCProgressHUD.bundle/hud_success.png -------------------------------------------------------------------------------- /LCProgressHUD/LCProgressHUD.bundle/hud_success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUD/LCProgressHUD.bundle/hud_success@2x.png -------------------------------------------------------------------------------- /LCProgressHUD/LCProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUD/LCProgressHUD.h -------------------------------------------------------------------------------- /LCProgressHUD/LCProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUD/LCProgressHUD.m -------------------------------------------------------------------------------- /LCProgressHUDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LCProgressHUDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LCProgressHUDemo.xcodeproj/project.xcworkspace/xcshareddata/LCProgressHUDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo.xcodeproj/project.xcworkspace/xcshareddata/LCProgressHUDemo.xccheckout -------------------------------------------------------------------------------- /LCProgressHUDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/LCProgressHUDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/LCProgressHUDemo.xcscheme -------------------------------------------------------------------------------- /LCProgressHUDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LCProgressHUDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LCProgressHUDemo.xcworkspace/xcuserdata/Leo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo.xcworkspace/xcuserdata/Leo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LCProgressHUDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo/AppDelegate.h -------------------------------------------------------------------------------- /LCProgressHUDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo/AppDelegate.m -------------------------------------------------------------------------------- /LCProgressHUDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /LCProgressHUDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LCProgressHUDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LCProgressHUDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo/Info.plist -------------------------------------------------------------------------------- /LCProgressHUDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo/ViewController.h -------------------------------------------------------------------------------- /LCProgressHUDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo/ViewController.m -------------------------------------------------------------------------------- /LCProgressHUDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemo/main.m -------------------------------------------------------------------------------- /LCProgressHUDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemoTests/Info.plist -------------------------------------------------------------------------------- /LCProgressHUDemoTests/LCProgressHUDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LCProgressHUDemoTests/LCProgressHUDemoTests.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/MBProgressHUD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Pods.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/MBProgressHUD.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/Pods-LCProgressHUDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Pods.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/Pods-LCProgressHUDemo.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/Pods-LCProgressHUDemoTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Pods.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/Pods-LCProgressHUDemoTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Pods.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemo/Pods-LCProgressHUDemo.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/Pods/Target Support Files/Pods-LCProgressHUDemoTests/Pods-LCProgressHUDemoTests.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCProgressHUD/HEAD/README.md --------------------------------------------------------------------------------