# SwiftyProgressHud **Repository Path**: third-party-frame-image_1/SwiftyProgressHud ## Basic Information - **Project Name**: SwiftyProgressHud - **Description**: SwiftyProgressHud ้•œๅƒๆ–‡ไปถ - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-06-26 - **Last Updated**: 2023-06-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Swifty Progress Hud [![CI Status](https://img.shields.io/travis/AtifNaveed/SwiftyProgressHud.svg?style=flat)](https://travis-ci.org/AtifNaveed/SwiftyProgressHud) [![Version](https://img.shields.io/cocoapods/v/SwiftyProgressHud.svg?style=flat)](https://cocoapods.org/pods/SwiftyProgressHud) [![License](https://img.shields.io/cocoapods/l/SwiftyProgressHud.svg?style=flat)](https://cocoapods.org/pods/SwiftyProgressHud) [![Platform](https://img.shields.io/cocoapods/p/SwiftyProgressHud.svg?style=flat)](https://cocoapods.org/pods/SwiftyProgressHud) ## Example To run the example project, clone the repo, and run `pod install` from the Example directory first. ## Requirements ## Installation SwiftyProgressHud is available through [CocoaPods](https://cocoapods.org). To install it, simply add the following line to your Podfile: ```ruby pod 'SwiftyProgressHud' ``` ## Usage var hud = SwiftyProgressHud() hud.show(view: self.view) ## Example import UIKit import SwiftyProgressHud class ViewController: UIViewController { var hud: SwiftyProgressHud! override func viewDidLoad() { super.viewDidLoad() hud = SwiftyProgressHud() } func showHud() { hud.text = "Loading" hud.show(view: self.view) } func hideHud() { hud.hide() } } ## Author AtifNaveed, atif.gcucs@gmail.com ## License SwiftyProgressHud is available under the MIT license. See the LICENSE file for more info.