{"id":2264,"url":"https://github.com/devSC/WSProgressHUD","last_synced_at":"2025-08-02T23:32:43.286Z","repository":{"id":35132094,"uuid":"39338278","full_name":"devSC/WSProgressHUD","owner":"devSC","description":"This is a beauful hud view for iPhone \u0026 iPad","archived":false,"fork":false,"pushed_at":"2019-10-19T10:37:39.000Z","size":5288,"stargazers_count":584,"open_issues_count":1,"forks_count":85,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-07-17T20:02:05.777Z","etag":null,"topics":["beauful-hud","hud","ipad","iphone"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devSC.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-19T15:21:23.000Z","updated_at":"2024-10-21T02:58:33.000Z","dependencies_parsed_at":"2022-08-17T21:25:41.957Z","dependency_job_id":null,"html_url":"https://github.com/devSC/WSProgressHUD","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/devSC/WSProgressHUD","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devSC%2FWSProgressHUD","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devSC%2FWSProgressHUD/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devSC%2FWSProgressHUD/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devSC%2FWSProgressHUD/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devSC","download_url":"https://codeload.github.com/devSC/WSProgressHUD/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devSC%2FWSProgressHUD/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268472936,"owners_count":24255790,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["beauful-hud","hud","ipad","iphone"],"created_at":"2024-01-05T20:16:09.271Z","updated_at":"2025-08-02T23:32:42.815Z","avatar_url":"https://github.com/devSC.png","language":"Objective-C","funding_links":[],"categories":["UI","Objective-C"],"sub_categories":["Activity Indicator","Other free courses"],"readme":"# WSProgressHUD\nThis is a beauful hud view for iPhone \u0026amp; iPad\n\n[![CI Status](http://img.shields.io/travis/devSC/WSProgressHUD.svg?style=flat)](https://travis-ci.org/devSC/WSProgressHUD)\n[![Version](https://img.shields.io/cocoapods/v/WSProgressHUD.svg?style=flat)](http://cocoapods.org/pods/WSProgressHUD)\n[![License](https://img.shields.io/cocoapods/l/WSProgressHUD.svg?style=flat)](http://cocoapods.org/pods/WSProgressHUD)\n[![Platform](https://img.shields.io/cocoapods/p/WSProgressHUD.svg?style=flat)](http://cocoapods.org/pods/WSProgressHUD)\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/devSC/WSProgressHUD)\n\n\n\n![Example](Example/Demo.gif)\n\n# Usage\nTo Download the project. Run the WSProgressHUD.xcodeproj in the demo directory.\n\n``` objc\n\n    [WSProgressHUD show];\n    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{\n        ...\n\n        dispatch_async(dispatch_get_main_queue(), ^{\n        ...\n        [WSProgressHUD dismiss];\n        });\n    });\n\n//Show on the self.view\n\n@implementation ViewController\n{\n    WSProgressHUD *hud;\n}\n- (void)viewDidLoad {\n    [super viewDidLoad];\n    // Do any additional setup after loading the view, typically from a nib.\n\n    //Add HUD to view\n    hud = [[WSProgressHUD alloc] initWithView:self.navigationController.view];\n    [self.view addSubview:hud];\n\n    //show\n    [hud showWithString:@\"Wating...\" maskType:WSProgressHUDMaskTypeBlack];\n\n    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{\n        [hud dismiss];\n    });\n\n}\n\n//Show on the window\n    //show\n    [WSProgressHUD show];\n\n    //Show with mask\n    [WSProgressHUD showWithMaskType:WSProgressHUDMaskTypeBlack];\n    \n    //Show with mask without tabbar\n    [WSProgressHUD showWithStatus:@\"Loading...\" maskType:WSProgressHUDMaskTypeBlack maskWithout:WSProgressHUDMaskWithoutTabbar];\n    \n    //Show with string\n    [WSProgressHUD showWithStatus:@\"Loading...\"];\n\n    //Show with facebook shimmering\n    [WSProgressHUD showShimmeringString:@\"WSProgressHUD Loading...\"];\n\n    //Show with Progress\n    [WSProgressHUD showProgress:progress status:@\"Updating...\"];\n\n    //Show with image\n    [WSProgressHUD showSuccessWithStatus:@\"Thanks..\"];\n    \n    //Show with string\n    [WSProgressHUD showImage:nil status:@\"WSProgressHUD\"]\n\n    //Dismiss\n    [WSProgressHUD dismiss];\n    \n    //And There have 3 indicator style for your choice\n    [WSProgressHUD setProgressHUDIndicatorStyle:WSProgressHUDIndicatorSmall] //small custom spinner\n\n```\n## Installation\n\n### From CocoaPods\n\nWSProgressHUD is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'WSProgressHUD'\n\n```\n\n### Carthage \n\n[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate `WSProgressHUD` into your Xcode project using Carthage, specify it in your `Cartfile`:\n\n```ogdl\ngithub \"devSC/WSProgressHUD\"\n```\n\nRun `carthage update` to build the framework and drag the built `WSProgressHUD.framework` (in Carthage/Build/iOS folder) into your Xcode project (Linked Frameworks and Libraries in `Targets`).\n\n### Manually\n\nDrag the `WSProgressHUD/Demo/WSProgressHUD` folder into your project.\nThen take care that `WSProgressHUD.bundle` is added to Targets-\u003eBuild Phases-\u003eCopy Bundle Resources.\nAdd the QuartzCore framework to your project.\n\n## Swift\n\nEven though `WSProgressHUD` is written in Objective-C, it can be used in Swift with no hassle. If you use [CocoaPods](http://cocoapods.org) add the following line to your [Podfile](http://guides.cocoapods.org/using/using-cocoapods.html):\n\n```ruby\nuse_frameworks!\n```\n\nIf you added `WSProgressHUD` manually, just add a [bridging header](https://developer.apple.com/library/content/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html) file to your project with the `WSProgressHUD` header included. \n\n## Thanks\n\n@Shimmering\n@SVProgressHUD\n@MMMaterialDesignSpinner\n\n## Author\nWilson-Yuan, xiaochong2154@163.com\n\n## License\nWSProgressHUD is available under the MIT license. See the [LICENSE](https://github.com/devSC/WSProgressHUD/blob/master/LICENSE)\n file for more info.\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FdevSC%2FWSProgressHUD","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FdevSC%2FWSProgressHUD","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FdevSC%2FWSProgressHUD/lists"}