Add quick placeholders for images and text
You've made a gorgeous app design, and you've tested your code until you're sure it's bug free. But there's one thing you can't control, which is your user's network connection – and if you need to fetch and display remote data, that means users are going to stare at a blank screen for a few seconds until that data comes back.
Or at least that's what they would do without a beautiful new Swift project called SkeletonView from Juanpe Catalán. This was designed to control the display of your views while your network requests are still running, and automatically provide placeholder graphics for images and text that show something is loading.
The process for enabling skeleton views couldn't be simpler:
someView.isSkeletonable = true
someView.showSkeleton()
Helpfully, SkeletonView operates recursively: if you call it on a container view, e.g. view.showSkeleton()
for your view controller's main view, then it will wind its way through your view hierarchy to make subviews skeletonable. Even better, you can add gentle animations from built-in defaults, or add your own – it's really customizable!
SkeletonView is available under the MIT license, so this is the kind of thing you can drop in and use to get immediate wins.
Link: SkeletonView.
SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure and A/B test your entire paywall UI without any code changes or app updates.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.