https://github.com/mallikarjunh/activity-indicator
This example show how to show Activity Indicator at navigation bar, how to show indicator at status bar (network indicator) and adding activity indicator programatically with text and without text.
https://github.com/mallikarjunh/activity-indicator
activity-indicator ios networkidicator objective-c swift
Last synced: 17 days ago
JSON representation
This example show how to show Activity Indicator at navigation bar, how to show indicator at status bar (network indicator) and adding activity indicator programatically with text and without text.
- Host: GitHub
- URL: https://github.com/mallikarjunh/activity-indicator
- Owner: MallikarjunH
- Created: 2019-07-09T10:37:09.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-07-13T11:17:45.000Z (almost 5 years ago)
- Last Synced: 2025-06-06T00:04:01.688Z (12 months ago)
- Topics: activity-indicator, ios, networkidicator, objective-c, swift
- Language: Objective-C
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. Activity Indicator and Network Activity Indicator.
This example show how to show Activity Indicator at navigation bar, how to show indicator at status bar (network indicator) and adding activity indicator programatically with text and without text.
2. ERProgressHud - Objective-C Library
https://github.com/emraz/ERProgressHud-ObjectiveC
// Show Simple ProgressHud without Title - Best One 1
[[ERProgressHud sharedInstance] show];
// Show Blur Background View ProgressHud without Title
[[ERProgressHud sharedInstance] showWithBlurView];
// Show Transparent Background View ProgressHud with Title - Best One 2
[[ERProgressHud sharedInstance] showWithTitle:@"Loading..."];
// Show Blur Background View ProgressHud with Title
[[ERProgressHud sharedInstance] showBlurViewWithTitle:@"Loading..."];
// Show Dark Background View ProgressHud with Title
[[ERProgressHud sharedInstance] showDarkBackgroundViewWithTitle:@"Loading..."];
// Hide ProgressView
[[ERProgressHud sharedInstance] hide];
3. SVProgressView
https://github.com/SVProgressHUD/SVProgressHUD
// Style Mask (Background)
SVProgressHUD.setDefaultMaskType(SVProgressHUDMaskType.black)
SVProgressHUD.setDefaultMaskType(SVProgressHUDMaskType.clear)
SVProgressHUD.setDefaultMaskType(SVProgressHUDMaskType.gradient)
//ProgressView Normal
SVProgressHUD.show()
// Progress View with Text
SVProgressHUD.show(withStatus: "Please wait...")
// Progress View with Text + Image
SVProgressHUD.show(UIImage(named: "loader.jpg")!, status: "Loading...")
//show info
SVProgressHUD.showInfo(withStatus: "Loading...")
//show alert/error
SVProgressHUD.showError(withStatus: "Loading...")
// To Dismiss
SVProgressHUD.dismiss()