版本記錄
版本號 | 時間 |
---|---|
V1.0 | 2019.11.06 星期三 |
前言
iOS中有關視圖控件用戶能看到的都在UIKit框架里面丑掺,用戶交互也是通過UIKit進行的。感興趣的參考上面幾篇文章盟蚣。
1. UIKit框架(一) —— UIKit動力學和移動效果(一)
2. UIKit框架(二) —— UIKit動力學和移動效果(二)
3. UIKit框架(三) —— UICollectionViewCell的擴張效果的實現(xiàn)(一)
4. UIKit框架(四) —— UICollectionViewCell的擴張效果的實現(xiàn)(二)
5. UIKit框架(五) —— 自定義控件:可重復使用的滑塊(一)
6. UIKit框架(六) —— 自定義控件:可重復使用的滑塊(二)
7. UIKit框架(七) —— 動態(tài)尺寸UITableViewCell的實現(xiàn)(一)
8. UIKit框架(八) —— 動態(tài)尺寸UITableViewCell的實現(xiàn)(二)
9. UIKit框架(九) —— UICollectionView的數(shù)據(jù)異步預加載(一)
10. UIKit框架(十) —— UICollectionView的數(shù)據(jù)異步預加載(二)
11. UIKit框架(十一) —— UICollectionView的重用封字、選擇和重排序(一)
12. UIKit框架(十二) —— UICollectionView的重用、選擇和重排序(二)
13. UIKit框架(十三) —— 如何創(chuàng)建自己的側滑式面板導航(一)
14. UIKit框架(十四) —— 如何創(chuàng)建自己的側滑式面板導航(二)
15. UIKit框架(十五) —— 基于自定義UICollectionViewLayout布局的簡單示例(一)
16. UIKit框架(十六) —— 基于自定義UICollectionViewLayout布局的簡單示例(二)
17. UIKit框架(十七) —— 基于自定義UICollectionViewLayout布局的簡單示例(三)
18. UIKit框架(十八) —— 基于CALayer屬性的一種3D邊欄動畫的實現(xiàn)(一)
19. UIKit框架(十九) —— 基于CALayer屬性的一種3D邊欄動畫的實現(xiàn)(二)
20. UIKit框架(二十) —— 基于UILabel跑馬燈類似效果的實現(xiàn)(一)
21. UIKit框架(二十一) —— UIStackView的使用(一)
22. UIKit框架(二十二) —— 基于UIPresentationController的自定義viewController的轉場和展示(一)
23. UIKit框架(二十三) —— 基于UIPresentationController的自定義viewController的轉場和展示(二)
24. UIKit框架(二十四) —— 基于UICollectionViews和Drag-Drop在兩個APP間的使用示例 (一)
25. UIKit框架(二十五) —— 基于UICollectionViews和Drag-Drop在兩個APP間的使用示例 (二)
26. UIKit框架(二十六) —— UICollectionView的自定義布局 (一)
27. UIKit框架(二十七) —— UICollectionView的自定義布局 (二)
28. UIKit框架(二十八) —— 一個UISplitViewController的簡單實用示例 (一)
29. UIKit框架(二十九) —— 一個UISplitViewController的簡單實用示例 (二)
30. UIKit框架(三十) —— 基于UICollectionViewCompositionalLayout API的UICollectionViews布局的簡單示例(一)
源碼
1. Swift
首先看下工程組織結構
下面就是代碼了
1. PhotoDetailViewController.swift
import UIKit
class PhotoDetailViewController: UIViewController {
var photoURL: URL?
let imageView = UIImageView()
convenience init(photoURL: URL) {
self.init()
self.photoURL = photoURL;
}
override func viewDidLoad() {
super.viewDidLoad()
if let photoURL = photoURL {
let imageName = photoURL.lastPathComponent
navigationItem.title = imageName
let image = UIImage(contentsOfFile: photoURL.path)
imageView.image = image;
imageView.contentMode = .scaleAspectFit
imageView.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(imageView)
view.backgroundColor = .systemBackground
NSLayoutConstraint.activate([
imageView.leadingAnchor.constraint(equalTo: view.leadingAnchor),
imageView.trailingAnchor.constraint(equalTo: view.trailingAnchor),
imageView.bottomAnchor.constraint(equalTo: view.bottomAnchor),
imageView.topAnchor.constraint(equalTo: view.topAnchor)
])
}
}
}
2. StringExtension.swift
import Foundation
extension StringProtocol {
var firstUppercased: String {
return prefix(1).uppercased() + dropFirst()
}
var displayNicely: String {
return firstUppercased.replacingOccurrences(of: "_", with: " ")
}
}
3. FileManagerExtensions.swift
import Foundation
extension FileManager {
func albumsAtURL(_ fileURL: URL) throws -> [AlbumItem] {
let albumsArray = try self.contentsOfDirectory(
at: fileURL,
includingPropertiesForKeys: [.nameKey, .isDirectoryKey],
options: .skipsHiddenFiles
).filter { (url) -> Bool in
do {
let resourceValues = try url.resourceValues(forKeys: [.isDirectoryKey])
return resourceValues.isDirectory! && url.lastPathComponent.first != "_"
} catch { return false }
}.sorted(by: { (urlA, urlB) -> Bool in
do {
let nameA = try urlA.resourceValues(forKeys:[.nameKey]).name
let nameB = try urlB.resourceValues(forKeys: [.nameKey]).name
return nameA! < nameB!
} catch { return true }
})
return albumsArray.map { fileURL -> AlbumItem in
do {
let detailItems = try self.albumDetailItemsAtURL(fileURL)
return AlbumItem(albumURL: fileURL, imageItems: detailItems)
} catch {
return AlbumItem(albumURL: fileURL)
}
}
}
func albumDetailItemsAtURL(_ fileURL: URL) throws -> [AlbumDetailItem] {
guard let components = URLComponents(url: fileURL, resolvingAgainstBaseURL: false) else { return [] }
let photosArray = try self.contentsOfDirectory(
at: fileURL,
includingPropertiesForKeys: [.nameKey, .isDirectoryKey],
options: .skipsHiddenFiles
).filter { (url) -> Bool in
do {
let resourceValues = try url.resourceValues(forKeys: [.isDirectoryKey])
return !resourceValues.isDirectory!
} catch { return false }
}.sorted(by: { (urlA, urlB) -> Bool in
do {
let nameA = try urlA.resourceValues(forKeys:[.nameKey]).name
let nameB = try urlB.resourceValues(forKeys: [.nameKey]).name
return nameA! < nameB!
} catch { return true }
})
return photosArray.map { fileURL in AlbumDetailItem(
photoURL: fileURL,
thumbnailURL: URL(fileURLWithPath: "\(components.path)thumbs/\(fileURL.lastPathComponent)")
)}
}
}
4. SyncingBadgeView.swift
import UIKit
class SyncingBadgeView: UICollectionReusableView {
static let reuseIdentifier = "syncing-badge"
let imageView = UIImageView(image: #imageLiteral(resourceName: "syncIcon"))
override init(frame: CGRect) {
super.init(frame: frame)
configure()
startAnimating()
}
required init?(coder: NSCoder) {
fatalError("Not implemented")
}
}
extension SyncingBadgeView {
func configure() {
backgroundColor = .white
imageView.translatesAutoresizingMaskIntoConstraints = false
imageView.contentMode = .scaleAspectFill
imageView.clipsToBounds = true
addSubview(imageView)
let inset = CGFloat(2)
NSLayoutConstraint.activate([
imageView.leadingAnchor.constraint(equalTo: leadingAnchor, constant: inset),
imageView.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -inset),
imageView.topAnchor.constraint(equalTo: topAnchor, constant: inset),
imageView.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -inset)
])
let radius = bounds.width / 2.0
layer.cornerRadius = radius
layer.borderColor = UIColor.black.cgColor
layer.borderWidth = 1.0
}
func startAnimating() {
let rotation = CABasicAnimation(keyPath: "transform.rotation.z")
rotation.toValue = Double.pi * 2
rotation.duration = 1
rotation.isCumulative = true
rotation.repeatCount = Float.greatestFiniteMagnitude
imageView.layer.add(rotation, forKey: "rotationAnimation")
}
}
5. HeaderView.swift
import UIKit
class HeaderView: UICollectionReusableView {
static let reuseIdentifier = "header-reuse-identifier"
let label = UILabel()
override init(frame: CGRect) {
super.init(frame: frame)
configure()
}
required init?(coder: NSCoder) {
fatalError()
}
}
extension HeaderView {
func configure() {
backgroundColor = .systemBackground
addSubview(label)
label.translatesAutoresizingMaskIntoConstraints = false
label.adjustsFontForContentSizeCategory = true
let inset = CGFloat(10)
NSLayoutConstraint.activate([
label.leadingAnchor.constraint(equalTo: leadingAnchor, constant: inset),
label.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -inset),
label.topAnchor.constraint(equalTo: topAnchor, constant: inset),
label.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -inset)
])
label.font = UIFont.preferredFont(forTextStyle: .title3)
}
}
6. AlbumDetailViewController.swift
import UIKit
class AlbumDetailViewController: UIViewController {
static let syncingBadgeKind = "syncing-badge-kind"
enum Section {
case albumBody
}
var dataSource: UICollectionViewDiffableDataSource<Section, AlbumDetailItem>! = nil
var albumDetailCollectionView: UICollectionView! = nil
var albumURL: URL?
convenience init(withPhotosFromDirectory directory: URL) {
self.init()
albumURL = directory
}
override func viewDidLoad() {
super.viewDidLoad()
navigationItem.title = albumURL?.lastPathComponent.displayNicely
configureCollectionView()
configureDataSource()
}
}
extension AlbumDetailViewController {
func configureCollectionView() {
let collectionView = UICollectionView(frame: view.bounds, collectionViewLayout: generateLayout())
view.addSubview(collectionView)
collectionView.autoresizingMask = [.flexibleHeight, .flexibleWidth]
collectionView.backgroundColor = .systemBackground
collectionView.delegate = self
collectionView.register(PhotoItemCell.self, forCellWithReuseIdentifier: PhotoItemCell.reuseIdentifer)
collectionView.register(SyncingBadgeView.self,
forSupplementaryViewOfKind: AlbumDetailViewController.syncingBadgeKind,
withReuseIdentifier: SyncingBadgeView.reuseIdentifier)
albumDetailCollectionView = collectionView
}
func configureDataSource() {
dataSource = UICollectionViewDiffableDataSource
<Section, AlbumDetailItem>(collectionView: albumDetailCollectionView) {
(collectionView: UICollectionView, indexPath: IndexPath, detailItem: AlbumDetailItem) -> UICollectionViewCell? in
guard let cell = collectionView.dequeueReusableCell(
withReuseIdentifier: PhotoItemCell.reuseIdentifer,
for: indexPath) as? PhotoItemCell else { fatalError("Could not create new cell") }
cell.photoURL = detailItem.thumbnailURL
return cell
}
dataSource.supplementaryViewProvider = {
(
collectionView: UICollectionView,
kind: String,
indexPath: IndexPath) -> UICollectionReusableView? in
let hasSyncBadge = indexPath.row % Int.random(in: 1...6) == 0
if let badgeView = collectionView.dequeueReusableSupplementaryView(
ofKind: kind,
withReuseIdentifier: SyncingBadgeView.reuseIdentifier,
for: indexPath) as? SyncingBadgeView {
badgeView.isHidden = !hasSyncBadge
return badgeView
} else {
fatalError("Cannot create new supplementary")
}
}
// load our initial data
let snapshot = snapshotForCurrentState()
dataSource.apply(snapshot, animatingDifferences: false)
}
func generateLayout() -> UICollectionViewLayout {
// We have three row styles
// Style 1: 'Full'
// A full width photo
// Style 2: 'Main with pair'
// A 2/3 width photo with two 1/3 width photos stacked vertically
// Style 3: 'Triplet'
// Three 1/3 width photos stacked horizontally
// Syncing badge
let syncingBadgeAnchor = NSCollectionLayoutAnchor(edges: [.top, .trailing], fractionalOffset: CGPoint(x: -0.3, y: 0.3))
let syncingBadge = NSCollectionLayoutSupplementaryItem(
layoutSize: NSCollectionLayoutSize(
widthDimension: .absolute(20),
heightDimension: .absolute(20)),
elementKind: AlbumDetailViewController.syncingBadgeKind,
containerAnchor: syncingBadgeAnchor)
// Full
let fullPhotoItem = NSCollectionLayoutItem(
layoutSize: NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .fractionalWidth(2/3)),
supplementaryItems: [syncingBadge])
fullPhotoItem.contentInsets = NSDirectionalEdgeInsets(top: 2, leading: 2, bottom: 2, trailing: 2)
// Main with pair
let mainItem = NSCollectionLayoutItem(
layoutSize: NSCollectionLayoutSize(
widthDimension: .fractionalWidth(2/3),
heightDimension: .fractionalHeight(1.0)))
mainItem.contentInsets = NSDirectionalEdgeInsets(top: 2, leading: 2, bottom: 2, trailing: 2)
let pairItem = NSCollectionLayoutItem(
layoutSize: NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .fractionalHeight(0.5)))
pairItem.contentInsets = NSDirectionalEdgeInsets(top: 2, leading: 2, bottom: 2, trailing: 2)
let trailingGroup = NSCollectionLayoutGroup.vertical(
layoutSize: NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1/3),
heightDimension: .fractionalHeight(1.0)),
subitem: pairItem,
count: 2)
let mainWithPairGroup = NSCollectionLayoutGroup.horizontal(
layoutSize: NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .fractionalWidth(4/9)),
subitems: [mainItem, trailingGroup])
// Triplet
let tripletItem = NSCollectionLayoutItem(
layoutSize: NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1/3),
heightDimension: .fractionalHeight(1.0)))
tripletItem.contentInsets = NSDirectionalEdgeInsets(top: 2, leading: 2, bottom: 2, trailing: 2)
let tripletGroup = NSCollectionLayoutGroup.horizontal(
layoutSize: NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .fractionalWidth(2/9)),
subitems: [tripletItem, tripletItem, tripletItem])
// Reversed main with pair
let mainWithPairReversedGroup = NSCollectionLayoutGroup.horizontal(
layoutSize: NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .fractionalWidth(4/9)),
subitems: [trailingGroup, mainItem])
let nestedGroup = NSCollectionLayoutGroup.vertical(
layoutSize: NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .fractionalWidth(16/9)),
subitems: [fullPhotoItem, mainWithPairGroup, tripletGroup, mainWithPairReversedGroup])
let section = NSCollectionLayoutSection(group: nestedGroup)
let layout = UICollectionViewCompositionalLayout(section: section)
return layout
}
func snapshotForCurrentState() -> NSDiffableDataSourceSnapshot<Section, AlbumDetailItem> {
var snapshot = NSDiffableDataSourceSnapshot<Section, AlbumDetailItem>()
snapshot.appendSections([Section.albumBody])
let items = itemsForAlbum()
snapshot.appendItems(items)
return snapshot
}
func itemsForAlbum() -> [AlbumDetailItem] {
guard let albumURL = albumURL else { return [] }
let fileManager = FileManager.default
do {
return try fileManager.albumDetailItemsAtURL(albumURL)
} catch {
print(error)
return []
}
}
}
extension AlbumDetailViewController: UICollectionViewDelegate {
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
guard let item = dataSource.itemIdentifier(for: indexPath) else { return }
let photoDetailVC = PhotoDetailViewController(photoURL: item.photoURL)
navigationController?.pushViewController(photoDetailVC, animated: true)
}
}
7. PhotoItemCell.swift
import UIKit
class PhotoItemCell: UICollectionViewCell {
static let reuseIdentifer = "photo-item-cell-reuse-identifier"
let imageView = UIImageView()
let contentContainer = UIView()
var photoURL: URL? {
didSet {
configure()
}
}
override init(frame: CGRect) {
super.init(frame: frame)
configure()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
extension PhotoItemCell {
func configure() {
contentContainer.translatesAutoresizingMaskIntoConstraints = false
contentView.addSubview(contentContainer)
guard let photoURL = self.photoURL else { return };
let photo = UIImage(contentsOfFile: photoURL.path)
imageView.image = photo
imageView.translatesAutoresizingMaskIntoConstraints = false
contentContainer.addSubview(imageView)
NSLayoutConstraint.activate([
contentContainer.leadingAnchor.constraint(equalTo: contentView.leadingAnchor),
contentContainer.trailingAnchor.constraint(equalTo: contentView.trailingAnchor),
contentContainer.topAnchor.constraint(equalTo: contentView.topAnchor),
contentContainer.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
imageView.leadingAnchor.constraint(equalTo: contentContainer.leadingAnchor),
imageView.trailingAnchor.constraint(equalTo: contentContainer.trailingAnchor),
imageView.bottomAnchor.constraint(equalTo: contentContainer.bottomAnchor),
imageView.topAnchor.constraint(equalTo: contentContainer.topAnchor)
])
}
}
8. AlbumDetailItem.swift
import Foundation
class AlbumDetailItem: Hashable {
let photoURL: URL
let thumbnailURL: URL
let subitems: [AlbumDetailItem]
init(photoURL: URL, thumbnailURL: URL, subitems: [AlbumDetailItem] = []) {
self.photoURL = photoURL
self.thumbnailURL = thumbnailURL
self.subitems = subitems
}
func hash(into hasher: inout Hasher) {
hasher.combine(identifier)
}
static func == (lhs: AlbumDetailItem, rhs: AlbumDetailItem) -> Bool {
return lhs.identifier == rhs.identifier
}
private let identifier = UUID()
}
9. AlbumsViewController.swift
import UIKit
class AlbumsViewController: UIViewController {
static let sectionHeaderElementKind = "section-header-element-kind"
enum Section: String, CaseIterable {
case featuredAlbums = "Featured Albums"
case sharedAlbums = "Shared Albums"
case myAlbums = "My Albums"
}
var dataSource: UICollectionViewDiffableDataSource<Section, AlbumItem>! = nil
var albumsCollectionView: UICollectionView! = nil
var baseURL: URL?
convenience init(withAlbumsFromDirectory directory: URL) {
self.init()
baseURL = directory
}
override func viewDidLoad() {
super.viewDidLoad()
navigationItem.title = "Your Albums"
configureCollectionView()
configureDataSource()
}
}
extension AlbumsViewController {
func configureCollectionView() {
let collectionView = UICollectionView(frame: view.bounds, collectionViewLayout: generateLayout())
view.addSubview(collectionView)
collectionView.autoresizingMask = [.flexibleHeight, .flexibleWidth]
collectionView.backgroundColor = .systemBackground
collectionView.delegate = self
collectionView.register(AlbumItemCell.self, forCellWithReuseIdentifier: AlbumItemCell.reuseIdentifer)
collectionView.register(FeaturedAlbumItemCell.self, forCellWithReuseIdentifier: FeaturedAlbumItemCell.reuseIdentifer)
collectionView.register(SharedAlbumItemCell.self, forCellWithReuseIdentifier: SharedAlbumItemCell.reuseIdentifer)
collectionView.register(
HeaderView.self,
forSupplementaryViewOfKind: AlbumsViewController.sectionHeaderElementKind,
withReuseIdentifier: HeaderView.reuseIdentifier)
albumsCollectionView = collectionView
}
func configureDataSource() {
dataSource = UICollectionViewDiffableDataSource
<Section, AlbumItem>(collectionView: albumsCollectionView) {
(collectionView: UICollectionView, indexPath: IndexPath, albumItem: AlbumItem) -> UICollectionViewCell? in
let sectionType = Section.allCases[indexPath.section]
switch sectionType {
case .featuredAlbums:
guard let cell = collectionView.dequeueReusableCell(
withReuseIdentifier: FeaturedAlbumItemCell.reuseIdentifer,
for: indexPath) as? FeaturedAlbumItemCell else { fatalError("Could not create new cell") }
cell.featuredPhotoURL = albumItem.imageItems[0].thumbnailURL
cell.title = albumItem.albumTitle
cell.totalNumberOfImages = albumItem.imageItems.count
return cell
case .sharedAlbums:
guard let cell = collectionView.dequeueReusableCell(
withReuseIdentifier: SharedAlbumItemCell.reuseIdentifer,
for: indexPath) as? SharedAlbumItemCell else { fatalError("Could not create new cell") }
cell.featuredPhotoURL = albumItem.imageItems[0].thumbnailURL
cell.title = albumItem.albumTitle
return cell
case .myAlbums:
guard let cell = collectionView.dequeueReusableCell(
withReuseIdentifier: AlbumItemCell.reuseIdentifer,
for: indexPath) as? AlbumItemCell else { fatalError("Could not create new cell") }
cell.featuredPhotoURL = albumItem.imageItems[0].thumbnailURL
cell.title = albumItem.albumTitle
return cell
}
}
dataSource.supplementaryViewProvider = { (
collectionView: UICollectionView,
kind: String,
indexPath: IndexPath) -> UICollectionReusableView? in
guard let supplementaryView = collectionView.dequeueReusableSupplementaryView(
ofKind: kind,
withReuseIdentifier: HeaderView.reuseIdentifier,
for: indexPath) as? HeaderView else { fatalError("Cannot create header view") }
supplementaryView.label.text = Section.allCases[indexPath.section].rawValue
return supplementaryView
}
let snapshot = snapshotForCurrentState()
dataSource.apply(snapshot, animatingDifferences: false)
}
func generateLayout() -> UICollectionViewLayout {
let layout = UICollectionViewCompositionalLayout { (sectionIndex: Int,
layoutEnvironment: NSCollectionLayoutEnvironment) -> NSCollectionLayoutSection? in
let isWideView = layoutEnvironment.container.effectiveContentSize.width > 500
let sectionLayoutKind = Section.allCases[sectionIndex]
switch (sectionLayoutKind) {
case .featuredAlbums: return self.generateFeaturedAlbumsLayout(isWide: isWideView)
case .sharedAlbums: return self.generateSharedlbumsLayout()
case .myAlbums: return self.generateMyAlbumsLayout(isWide: isWideView)
}
}
return layout
}
func generateFeaturedAlbumsLayout(isWide: Bool) -> NSCollectionLayoutSection {
let itemSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0),
heightDimension: .fractionalWidth(2/3))
let item = NSCollectionLayoutItem(layoutSize: itemSize)
// Show one item plus peek on narrow screens, two items plus peek on wider screens
let groupFractionalWidth = isWide ? 0.475 : 0.95
let groupFractionalHeight: Float = isWide ? 1/3 : 2/3
let groupSize = NSCollectionLayoutSize(
widthDimension: .fractionalWidth(CGFloat(groupFractionalWidth)),
heightDimension: .fractionalWidth(CGFloat(groupFractionalHeight)))
let group = NSCollectionLayoutGroup.horizontal(layoutSize: groupSize, subitem: item, count: 1)
group.contentInsets = NSDirectionalEdgeInsets(top: 5, leading: 5, bottom: 5, trailing: 5)
let headerSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1.0),
heightDimension: .estimated(44))
let sectionHeader = NSCollectionLayoutBoundarySupplementaryItem(
layoutSize: headerSize,
elementKind: AlbumsViewController.sectionHeaderElementKind, alignment: .top)
let section = NSCollectionLayoutSection(group: group)
section.boundarySupplementaryItems = [sectionHeader]
section.orthogonalScrollingBehavior = .groupPaging
return section
}
func generateSharedlbumsLayout() -> NSCollectionLayoutSection {
let itemSize = NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .fractionalWidth(1.0))
let item = NSCollectionLayoutItem(layoutSize: itemSize)
let groupSize = NSCollectionLayoutSize(
widthDimension: .absolute(140),
heightDimension: .absolute(186))
let group = NSCollectionLayoutGroup.vertical(layoutSize: groupSize, subitem: item, count: 1)
group.contentInsets = NSDirectionalEdgeInsets(top: 5, leading: 5, bottom: 5, trailing: 5)
let headerSize = NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .estimated(44))
let sectionHeader = NSCollectionLayoutBoundarySupplementaryItem(
layoutSize: headerSize,
elementKind: AlbumsViewController.sectionHeaderElementKind,
alignment: .top)
let section = NSCollectionLayoutSection(group: group)
section.boundarySupplementaryItems = [sectionHeader]
section.orthogonalScrollingBehavior = .groupPaging
return section
}
func generateMyAlbumsLayout(isWide: Bool) -> NSCollectionLayoutSection {
let itemSize = NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .fractionalHeight(1.0))
let item = NSCollectionLayoutItem(layoutSize: itemSize)
item.contentInsets = NSDirectionalEdgeInsets(top: 2, leading: 2, bottom: 2, trailing: 2)
let groupHeight = NSCollectionLayoutDimension.fractionalWidth(isWide ? 0.25 : 0.5)
let groupSize = NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: groupHeight)
let group = NSCollectionLayoutGroup.horizontal(layoutSize: groupSize, subitem: item, count: isWide ? 4 : 2)
let headerSize = NSCollectionLayoutSize(
widthDimension: .fractionalWidth(1.0),
heightDimension: .estimated(44))
let sectionHeader = NSCollectionLayoutBoundarySupplementaryItem(
layoutSize: headerSize,
elementKind: AlbumsViewController.sectionHeaderElementKind,
alignment: .top)
let section = NSCollectionLayoutSection(group: group)
section.boundarySupplementaryItems = [sectionHeader]
return section
}
func snapshotForCurrentState() -> NSDiffableDataSourceSnapshot<Section, AlbumItem> {
let allAlbums = albumsInBaseDirectory()
let sharingSuggestions = Array(albumsInBaseDirectory().prefix(3))
let sharedAlbums = Array(albumsInBaseDirectory().suffix(3))
var snapshot = NSDiffableDataSourceSnapshot<Section, AlbumItem>()
snapshot.appendSections([Section.featuredAlbums])
snapshot.appendItems(sharingSuggestions)
snapshot.appendSections([Section.sharedAlbums])
snapshot.appendItems(sharedAlbums)
snapshot.appendSections([Section.myAlbums])
snapshot.appendItems(allAlbums)
return snapshot
}
func albumsInBaseDirectory() -> [AlbumItem] {
guard let baseURL = baseURL else { return [] }
let fileManager = FileManager.default
do {
return try fileManager.albumsAtURL(baseURL)
} catch {
print(error)
return []
}
}
}
extension AlbumsViewController: UICollectionViewDelegate {
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
guard let item = dataSource.itemIdentifier(for: indexPath) else { return }
let albumDetailVC = AlbumDetailViewController(withPhotosFromDirectory: item.albumURL)
navigationController?.pushViewController(albumDetailVC, animated: true)
}
}
10. AlbumItem.swift
import Foundation
class AlbumItem: Hashable {
let albumURL: URL
let albumTitle: String
let imageItems: [AlbumDetailItem]
init(albumURL: URL, imageItems: [AlbumDetailItem] = []) {
self.albumURL = albumURL
self.albumTitle = albumURL.lastPathComponent.displayNicely
self.imageItems = imageItems
}
func hash(into hasher: inout Hasher) {
hasher.combine(identifier)
}
static func == (lhs: AlbumItem, rhs: AlbumItem) -> Bool {
return lhs.identifier == rhs.identifier
}
private let identifier = UUID()
}
11. AlbumItemCell.swift
import UIKit
class AlbumItemCell: UICollectionViewCell {
static let reuseIdentifer = "album-item-cell-reuse-identifier"
let titleLabel = UILabel()
let featuredPhotoView = UIImageView()
let contentContainer = UIView()
var title: String? {
didSet {
configure()
}
}
var featuredPhotoURL: URL? {
didSet {
configure()
}
}
override init(frame: CGRect) {
super.init(frame: frame)
configure()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
extension AlbumItemCell {
func configure() {
contentContainer.translatesAutoresizingMaskIntoConstraints = false
contentView.addSubview(featuredPhotoView)
contentView.addSubview(contentContainer)
featuredPhotoView.translatesAutoresizingMaskIntoConstraints = false
if let featuredPhotoURL = featuredPhotoURL {
featuredPhotoView.image = UIImage(contentsOfFile: featuredPhotoURL.path)
}
featuredPhotoView.clipsToBounds = true
contentContainer.addSubview(featuredPhotoView)
titleLabel.translatesAutoresizingMaskIntoConstraints = false
titleLabel.text = title
titleLabel.font = UIFont.preferredFont(forTextStyle: .headline)
titleLabel.adjustsFontForContentSizeCategory = true
titleLabel.textColor = .white
titleLabel.textAlignment = .center
titleLabel.layer.shadowColor = UIColor.black.cgColor
titleLabel.layer.shadowRadius = 3.0
titleLabel.layer.shadowOpacity = 1.0
titleLabel.layer.shadowOffset = CGSize(width: 4, height: 4)
titleLabel.layer.masksToBounds = false
contentContainer.addSubview(titleLabel)
NSLayoutConstraint.activate([
contentContainer.leadingAnchor.constraint(equalTo: contentView.leadingAnchor),
contentContainer.trailingAnchor.constraint(equalTo: contentView.trailingAnchor),
contentContainer.topAnchor.constraint(equalTo: contentView.topAnchor),
contentContainer.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
featuredPhotoView.leadingAnchor.constraint(equalTo: contentContainer.leadingAnchor),
featuredPhotoView.trailingAnchor.constraint(equalTo: contentContainer.trailingAnchor),
featuredPhotoView.topAnchor.constraint(equalTo: contentContainer.topAnchor),
featuredPhotoView.bottomAnchor.constraint(equalTo: contentContainer.bottomAnchor),
titleLabel.leadingAnchor.constraint(equalTo: contentView.leadingAnchor),
titleLabel.trailingAnchor.constraint(equalTo: contentView.trailingAnchor),
titleLabel.centerXAnchor.constraint(equalTo: contentView.centerXAnchor),
titleLabel.centerYAnchor.constraint(equalTo: contentView.centerYAnchor)
])
}
}
12. FeaturedAlbumItemCell.swift
import UIKit
class FeaturedAlbumItemCell: UICollectionViewCell {
static let reuseIdentifer = "featured-album-item-cell-reuse-identifier"
let titleLabel = UILabel()
let imageCountLabel = UILabel()
let featuredPhotoView = UIImageView()
let contentContainer = UIView()
var title: String? {
didSet {
configure()
}
}
var totalNumberOfImages: Int? {
didSet {
configure()
}
}
var featuredPhotoURL: URL? {
didSet {
configure()
}
}
override init(frame: CGRect) {
super.init(frame: frame)
configure()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
extension FeaturedAlbumItemCell {
func configure() {
contentContainer.translatesAutoresizingMaskIntoConstraints = false
contentView.addSubview(featuredPhotoView)
contentView.addSubview(contentContainer)
featuredPhotoView.translatesAutoresizingMaskIntoConstraints = false
if let featuredPhotoURL = featuredPhotoURL {
featuredPhotoView.image = UIImage(contentsOfFile: featuredPhotoURL.path)
}
featuredPhotoView.layer.cornerRadius = 4
featuredPhotoView.clipsToBounds = true
contentContainer.addSubview(featuredPhotoView)
titleLabel.translatesAutoresizingMaskIntoConstraints = false
titleLabel.text = title
titleLabel.font = UIFont.preferredFont(forTextStyle: .subheadline)
titleLabel.adjustsFontForContentSizeCategory = true
contentContainer.addSubview(titleLabel)
imageCountLabel.translatesAutoresizingMaskIntoConstraints = false
if let totalNumberOfImages = totalNumberOfImages {
imageCountLabel.text = "\(totalNumberOfImages) photos"
}
imageCountLabel.font = UIFont.preferredFont(forTextStyle: .subheadline)
imageCountLabel.adjustsFontForContentSizeCategory = true
imageCountLabel.textColor = .placeholderText
contentContainer.addSubview(imageCountLabel)
let spacing = CGFloat(10)
NSLayoutConstraint.activate([
contentContainer.leadingAnchor.constraint(equalTo: contentView.leadingAnchor),
contentContainer.trailingAnchor.constraint(equalTo: contentView.trailingAnchor),
contentContainer.topAnchor.constraint(equalTo: contentView.topAnchor),
contentContainer.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
featuredPhotoView.leadingAnchor.constraint(equalTo: contentContainer.leadingAnchor),
featuredPhotoView.trailingAnchor.constraint(equalTo: contentContainer.trailingAnchor),
featuredPhotoView.topAnchor.constraint(equalTo: contentContainer.topAnchor),
titleLabel.topAnchor.constraint(equalTo: featuredPhotoView.bottomAnchor, constant: spacing),
titleLabel.leadingAnchor.constraint(equalTo: featuredPhotoView.leadingAnchor),
titleLabel.trailingAnchor.constraint(equalTo: featuredPhotoView.trailingAnchor),
imageCountLabel.topAnchor.constraint(equalTo: titleLabel.bottomAnchor),
imageCountLabel.leadingAnchor.constraint(equalTo: contentView.leadingAnchor),
imageCountLabel.trailingAnchor.constraint(equalTo: contentView.trailingAnchor),
imageCountLabel.bottomAnchor.constraint(equalTo: contentView.bottomAnchor)
])
}
}
13. SharedAlbumItemCell.swift
import UIKit
class SharedAlbumItemCell: UICollectionViewCell {
static let reuseIdentifer = "shared-album-item-cell-reuse-identifier"
let titleLabel = UILabel()
let ownerLabel = UILabel()
let featuredPhotoView = UIImageView()
let ownerAvatar = UIImageView()
let contentContainer = UIView()
let owner: Owner;
enum Owner: Int, CaseIterable {
case Tom
case Matt
case Ray
func avatar() -> UIImage {
switch self {
case .Tom: return #imageLiteral(resourceName: "tom_profile")
case .Matt: return #imageLiteral(resourceName: "matt_profile")
case .Ray: return #imageLiteral(resourceName: "ray_profile")
}
}
func name() -> String {
switch self {
case .Tom: return "Tom Elliott"
case .Matt: return "Matt Galloway"
case .Ray: return "Ray Wenderlich"
}
}
}
var title: String? {
didSet {
configure()
}
}
var featuredPhotoURL: URL? {
didSet {
configure()
}
}
override init(frame: CGRect) {
self.owner = Owner.allCases.randomElement()!
super.init(frame: frame)
configure()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
extension SharedAlbumItemCell {
func configure() {
contentContainer.translatesAutoresizingMaskIntoConstraints = false
contentView.addSubview(featuredPhotoView)
contentView.addSubview(contentContainer)
featuredPhotoView.translatesAutoresizingMaskIntoConstraints = false
if let featuredPhotoURL = featuredPhotoURL {
featuredPhotoView.image = UIImage(contentsOfFile: featuredPhotoURL.path)
}
featuredPhotoView.layer.cornerRadius = 4
featuredPhotoView.clipsToBounds = true
contentContainer.addSubview(featuredPhotoView)
titleLabel.translatesAutoresizingMaskIntoConstraints = false
titleLabel.text = title
titleLabel.font = UIFont.preferredFont(forTextStyle: .subheadline)
titleLabel.adjustsFontForContentSizeCategory = true
contentContainer.addSubview(titleLabel)
ownerLabel.translatesAutoresizingMaskIntoConstraints = false
ownerLabel.text = "From \(owner.name())"
ownerLabel.font = UIFont.preferredFont(forTextStyle: .subheadline)
ownerLabel.adjustsFontForContentSizeCategory = true
ownerLabel.textColor = .placeholderText
contentContainer.addSubview(ownerLabel)
ownerAvatar.translatesAutoresizingMaskIntoConstraints = false
ownerAvatar.image = owner.avatar()
ownerAvatar.layer.cornerRadius = 15
ownerAvatar.layer.borderColor = UIColor.systemBackground.cgColor
ownerAvatar.layer.borderWidth = 1
ownerAvatar.clipsToBounds = true
contentContainer.addSubview(ownerAvatar)
let spacing = CGFloat(10)
NSLayoutConstraint.activate([
contentContainer.leadingAnchor.constraint(equalTo: contentView.leadingAnchor),
contentContainer.trailingAnchor.constraint(equalTo: contentView.trailingAnchor),
contentContainer.topAnchor.constraint(equalTo: contentView.topAnchor),
contentContainer.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
featuredPhotoView.leadingAnchor.constraint(equalTo: contentContainer.leadingAnchor),
featuredPhotoView.trailingAnchor.constraint(equalTo: contentContainer.trailingAnchor),
featuredPhotoView.topAnchor.constraint(equalTo: contentContainer.topAnchor),
titleLabel.topAnchor.constraint(equalTo: featuredPhotoView.bottomAnchor, constant: spacing),
titleLabel.leadingAnchor.constraint(equalTo: featuredPhotoView.leadingAnchor),
titleLabel.trailingAnchor.constraint(equalTo: featuredPhotoView.trailingAnchor),
ownerLabel.topAnchor.constraint(equalTo: titleLabel.bottomAnchor),
ownerLabel.leadingAnchor.constraint(equalTo: contentView.leadingAnchor),
ownerLabel.trailingAnchor.constraint(equalTo: contentView.trailingAnchor),
ownerLabel.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
ownerAvatar.heightAnchor.constraint(equalToConstant: 30),
ownerAvatar.widthAnchor.constraint(equalToConstant: 30),
ownerAvatar.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: -spacing),
ownerAvatar.bottomAnchor.constraint(equalTo: featuredPhotoView.bottomAnchor, constant: -spacing),
])
}
}
14. AppDelegate.swift
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
internal func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
self.window = UIWindow(frame: UIScreen.main.bounds)
guard let bundleURL = Bundle.main.url(forResource: "PhotoData", withExtension: "bundle") else { return false }
let initialViewController = AlbumsViewController(withAlbumsFromDirectory: bundleURL)
let navigationController = UINavigationController(rootViewController: initialViewController)
window?.rootViewController = navigationController
window?.makeKeyAndVisible()
return true
}
}
題外話:你可以無縫銜接找到下一任碘橘,我卻不肯放過自己!
后記
本篇主要講述了基于UICollectionViewCompositionalLayout API的UICollectionViews布局吱肌,感興趣的給個贊或者關注~~~