CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

HUD 2.0.1

HUD 2.0.1

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Sep 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Chakery, Chakery.



HUD 2.0.1

  • By
  • chakery

HUD

A Simple HUD for iOS 8 and up, Support screen rotation. image

Installation

platform :ios, '8.0'
use_frameworks!

pod 'HUD', '~>1.2.0'

Using

// show
HUD.show(.Loading, text: "Loading")
HUD.show(.Success, text: "Success")
HUD.show(.Error, text: "Error")
HUD.show(.Info, text: "Warning")
HUD.show(.None, text: "Text")


// timed dismiss
HUD.show(.Loading, text: "Loading", time: 3) { _ in
    print("Loading completed")
}
HUD.show(.Success, text: "success", time: 3) { _ in
    print("Success completed")
}
HUD.show(.Error, text: "error", time: 3) { _ in
    print("Error completed")
}
HUD.show(.Info, text: "Warning", time: 3) { _ in
    print("Warning completed")
}
HUD.show(.None, text: "Text", time: 3) { _ in
    print("Text completed")
}


// dismiss
HUD.dismiss()

License

Source code is distributed under MIT license.