Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

ProgressHUD is a lightweight and easy-to-use HUD for iOS. Over 5000+ animations.

License

NotificationsYou must be signed in to change notification settings

relatedcode/ProgressHUD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WHAT'S NEW

For detailed changes, please refer to theChange log.

OVERVIEW

ProgressHUD is a convenient and intuitive HUD tool designed specifically for iOS. It enables the seamless presentation of concise alerts or notifications to your app users in a simple and non-disruptive way.

INSTALLATION

Swift Package Manager

Swift Package Manager is a tool for managing Swift code distribution.

To addProgressHUD as a dependency to your project, follow these steps:

  1. Open your Swift project in Xcode.
  2. Navigate toFile ->Add Package Dependencies....
  3. Pastehttps://github.com/relatedcode/ProgressHUD.git into the search bar.
  4. Choose the version you want to use and clickAdd Package.

Manually

If you prefer not to use the dependency manager above, you can integrateProgressHUD into your project manually. Simply copy all the*.swift files from theProgressHUD/Sources folder into your Xcode project.

QUICK START

ProgressHUD.banner("Banner title","Banner message to display.")
ProgressHUD.banner("Banner title","Message to display.", delay:2.0)
ProgressHUD.bannerHide()
ProgressHUD.animate("Some text...")
ProgressHUD.animate("Some text...", interaction:false)
ProgressHUD.animate("Please wait...",.ballVerticalBounce)
ProgressHUD.succeed()
ProgressHUD.succeed("Some text...", delay:1.5)
ProgressHUD.failed()
ProgressHUD.failed("Some text...")
ProgressHUD.progress(0.15)
ProgressHUD.progress("Loading...",0.42)
ProgressHUD.symbol(name:"box.truck")
ProgressHUD.symbol("Some text...", name:"sun.max")
ProgressHUD.dismiss()
ProgressHUD.remove()

REQUIREMENTS

  • iOS 13.0+
  • Xcode 15.0+

CUSTOMIZATION

You can customize attributes like color, font, image, animation type, size, and more by using these methods:

ProgressHUD.animationType=.circleStrokeSpin
ProgressHUD.colorHUD=.systemGray
ProgressHUD.colorBackground=.lightGray
ProgressHUD.colorAnimation=.systemBlue
ProgressHUD.colorProgress=.systemBlue
ProgressHUD.colorStatus=.label
ProgressHUD.mediaSize=100ProgressHUD.marginSize=50
ProgressHUD.fontStatus=.boldSystemFont(ofSize:24)
ProgressHUD.imageSuccess=UIImage(named:"success.png")ProgressHUD.imageError=UIImage(named:"error.png")

A comprehensive list of the predefined enums:

publicenumAnimationType:CaseIterable{case nonecase activityIndicatorcase ballVerticalBouncecase barSweepTogglecase circleArcDotSpincase circleBarSpinFadecase circleDotSpinFadecase circlePulseMultiplecase circlePulseSinglecase circleRippleMultiplecase circleRippleSinglecase circleRotateChasecase circleStrokeSpincase dualDotSidestepcase horizontalBarScalingcase horizontalDotScalingcase pacmanProgresscase quintupleDotDancecase semiRingRotationcase sfSymbolBouncecase squareCircuitSnakecase triangleDotShift}
publicenumLiveIcon{case succeedcase failedcase added}

LICENSE

MIT License

Copyright (c) 2025 Related Code

Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THESOFTWARE.


[8]ページ先頭

©2009-2025 Movatter.jp