How to turn on the network indicator in the iOS status bar? [duplicate] How to turn on the network indicator in the iOS status bar? [duplicate] ios ios

How to turn on the network indicator in the iOS status bar? [duplicate]


Swift

UIApplication.sharedApplication().networkActivityIndicatorVisible = true

Swift 5 , Swift 4.x , Swift 3.x

UIApplication.shared.isNetworkActivityIndicatorVisible = true

Update for iOS 13, 14

There will be no network indicator displayed from iOS 13.

The deprecation message says:

Provide a custom network activity UI in your app if desired.


[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];