Modal Loading Indicator¶
FUIModalLoadingIndicator¶
public class FUIModalLoadingIndicator
FUIModalLoadingIndicator provides convenience class methods for showing an overlay modal loading indicator view centered on screen.
You use the show() method to display a FUIModalLoadingIndicatorView.
The show() methods return the created FUIModalLoadingIndicatorView instance that can be used to dismiss() the view again.
Usage¶
Show Fullscreen¶
```swift //show the modal view: let modalLoadingView = FUIModalLoadingIndicator.show() ...
// dismiss the modal view: modalLoadingView.dismiss() ```
Last update: April 14, 2021