- July 26, 2025
- Mins Read
Lightweight Swift loading activity for iOS7+. Really simple to use, just add the class and write 1 line of code.
EZLoadingActivity.show(“Loading…”, disableUI: true)
‘disableUI’ stops user interactions until you hide loadingactivity.
EZLoadingActivity.hide(success: true, animated: true)
EZLoadingActivity.hide(success: false, animated: true)
EZLoadingActivity.hide(success: true, animated: false)
EZLoadingActivity.hide()
EZLoadingActivity.Settings.SuccessColor = UIColor.blueColor()
EZLoadingActivity.show(“Loading…”, disableUI: false)
Settings Options |
---|
BackgroundColor |
ActivityColor |
TextColor |
FontName |
SuccessIcon |
FailIcon |
SuccessText |
FailText |
SuccessColor |
FailColor |
ActivityWidth |
ActivityHeight |
EZLoadingActivity.show(“Uploading…”, disableUI: false)
var postObject = PFObject(className: “className”)
postObject.saveInBackgroundWithBlock { (succeeded: Bool, error: NSError!) -> Void in
if error == nil {
if succeeded == true {
EZLoadingActivity.hide(success: true, animated: false)
print(“Upload Complete”)
} else {
EZLoadingActivity.hide(success: false, animated: true)
print(“Upload Failed”)
}
} else {
EZLoadingActivity.hide(success: false, animated: true)
print(“Error”)
}
}
######Showing EZLoadingActivity for a certain time:
EZLoadingActivity.showWithDelay(“Waiting…”, disableUI: false, seconds: 2)
######Showing EZLoadingActivity from App Window(For example: for Split view controller):
EZLoadingActivity.Settings.LoadOverApplicationWindow = true
EZLoadingActivity is a singleton object so you don’t need to keep track of its instance.
##Installation (~10 seconds)
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate EZLoadingActivity into your Xcode project using Carthage, specify it in your Cartfile
:
github “goktugyil/EZLoadingActivity”
Run carthage update
to build the framework and drag the built EZLoadingActivity.framework
into your Xcode project.
Then on the top of files where you are going to use this:
import EZLoadingActivity
You can use CocoaPods to install EZLoadingActivity
by adding it to your Podfile
:
platform :ios, ‘8.0’
use_frameworks!
pod ‘EZLoadingActivity’ #Stable release for Swift 3.0
pod ‘EZLoadingActivity’, :git => ‘https://github.com/goktugyil/EZLoadingActivity.git’ #Latest release for Swift 3.0
pod ‘EZLoadingActivity’, ‘~> 0.8’ #For Swift 2.2
Then on the top of files where you are going to use this:
import EZLoadingActivity
##Requirements
##Possible features
##License EZLoadingActivity is available under the MIT license. See the LICENSE file.
##Keywords swift, hud, loading, activity, progresshud, progress, track, spinner,
NavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. 💻 Installation 📦 Swift Package Manager Using Swift Package Manager, add ...
An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation. NavigationStack Installation ...
With SwiftUI Router you can power your SwiftUI app with path-based routing. By utilizing a path-based system, navigation in your app becomes ...
This package takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers, allowing you to use the same API not just ...