evgenyneu / Auk

An image slideshow for iOS written in Swift.
MIT License
277 stars 44 forks source link

Show Spinner #60

Open junaid04 opened 7 years ago

junaid04 commented 7 years ago

Is there any way to show spinner because this property is not found scrollView.auk.settings.showSpinnerWhileLoading = true

evgenyneu commented 7 years ago

Hi @junaid04, thanks for the suggestion. No unfortunately this has not been implemented yet. I will put it into TODO list.

A workaround is to show a placeholder image while the image is being loaded

// Show placeholder image while remote image is being downloaded.
scrollView.auk.settings.placeholderImage = UIImage(named: "placeholder.jpg")

// Show an image AFTER specifying the settings
scrollView.auk.show(url: "https://bit.ly/auk_image")
junaid04 commented 7 years ago

ok thanks