activityIndicator in swift 5

Solution:

The below code is used for activity indicator in swift 4

            let activityIndicator = UIActivityIndicatorView(activityIndicatorStyle: .white)


In swift 5 the below code is used.

let activityIndicator = UIActivityIndicatorView(style: .white)

Comments

Popular posts from this blog

Invalid bundle error while upload the app to the app Store

Saved Image in document directory and save path in coredata not able to fetch the image file iOS swift