Skip to content

Instantly share code, notes, and snippets.

View shawn-frank's full-sized avatar

Shawn Frank shawn-frank

View GitHub Profile
@shawn-frank
shawn-frank / TableScrollVC.swift
Created March 23, 2022 12:55
This is a paging example using UITableView with local data when the user scrolls to the end of the list. This example is for iOS using Swift and was created as an answer for this stack overflow question: https://stackoverflow.com/q/71574920/1619193
//
// TableScrollVC.swift
// TestApp
//
// Created by Shawn Frank on 23/03/2022.
//
import UIKit
class TableScrollVC: UITableViewController {
@shawn-frank
shawn-frank / OverlapViewController.swift
Created April 9, 2022 10:40
This is a small example created that demonstrates the use of a custom UICollectionViewFlowLayout to create cells that overlap each other. This demo was created in response to this StackOverflow question: https://stackoverflow.com/q/71784968/1619193
//
// OverlapViewController.swift
// TestApp
//
// Created by Shawn Frank on 09/04/2022.
//
import UIKit
class OverlapViewController: UIViewController {