Loading Indicator in Swift
- Easy to use
- Show a transparent overlay over the whole screen or part of the screen. The overlay will prevent user interaction with the covered controls while the task is in progress.
- Show animating UIActivityIndicatorView programmatically in the center of the overlay to indicate a task is being processed
- Show additional custom text in the overlay to provide additional information
Include the LoadingIndicatorView.swift file. Call one of the show methods to show the indicator before long running task. Call hide method to hide the indicator after long running task.
LoadingIndicatorView.show()
LoadingIndicatorView.show("Loading")
LoadingIndicatorView.show(target)
LoadingIndicatorView.show(target, "Loading")
LoadingIndicatorView.hide()