Simple non-blocking HUD displaying a loader above the status bar with a cool animation. Single-line to use.
- Simply drag the
./HLStatusBarLoader
folder into your project.
This is an UIViewController extension. You just have to call these methods on your UIViewController instance. As it does concern a UI update, remmeber to dispach on the main thread.
Display the loader:
func showStatusBarHUD() -> Void
Hide the loader:
func hideStatusBarHUD() -> Void
Changing tint color:
Update this property in your UIViewController instance.
var statusBarHUDForegroundColor: UIColor?
Default color is UIColor.black()
.
HLStatusBarLoader was developed by Hervé Heurtault de Lammerville for Photowizz app. If you have any feature suggestion or bug report, please help out by creating an issue on GitHub.