- July 11, 2025
- Mins Read
Facebook news feed style animation
ListPlaceholder is a swift library allows you to easily add facebook style animated loading placeholder to your tableviews, collection views or custom views.
Podfile
target ‘Example’ do
# IMPORTANT: Make sure use_frameworks! is included at the top of the file
use_frameworks!
platform :ios, ‘8.0’
pod ‘ListPlaceholder’
end
pod install
.xcworkspace
that CocoaPods createdSimply download the ListLoader.swift
file from here into your project, make sure you point to your projects target
import ListPlaceholder
UITableView usage
//to show the loader
tableView.reloadData()
tableView.showLoader()
//to hide the loader
tableView.hideLoader()
UICollectionView usage
//to show the loader
collectionView.reloadData()
collectionView.layoutIfNeeded()
collectionView.showLoader()
//to hide the loader
collectionView.hideLoader()
UIView usage
//to show the loader
customView.showLoader()
//to hide the loader
customView.hideLoader()
Also the placeholder is now supporting in Objective-C language
@import ListPlaceholder;
//to show the loader
[_customView showLoader];
//to hide the loader
[_customView hideLoader];
Take a look at the example project over here
Example.xcworkspace
in XcodeA SwiftUI View that emits confetti with user-defined shapes, images, and text.
A colour wheel made all in SwiftUI. There are 2 different colour wheels to choose from. The first main one ...
A color picker implementation with color wheel appearance written in plain SwiftUI. It is compatible with UIColor and NSColor.
This repository is no longer maintained. Here's why: with the release of iOS 16 SwiftUI now enables most of the ...