Skip to content

Instantly share code, notes, and snippets.

View RichAppz's full-sized avatar
💻
Coding!

Rich Mucha RichAppz

💻
Coding!
View GitHub Profile
@RichAppz
RichAppz / UICollectionView+Extension.swift
Last active December 7, 2020 11:15
UICollectionView+Extension
import Foundation
import UIKit
public extension UICollectionView {
/**
Register nibs faster by passing the type - if for some reason the `identifier` is different then it can be passed
- Parameter type: UICollectionView.Type
- Parameter identifier: String?
*/
@RichAppz
RichAppz / UITableView+Extension.swift
Created March 15, 2020 10:30
UITableView+Extension
import Foundation
import UIKit
public extension UITableView {
/**
Register nibs faster by passing the type - if for some reason the `identifier` is different then it can be passed
- Parameter type: UITableViewCell.Type
- Parameter identifier: String?
*/