Skip to content

Instantly share code, notes, and snippets.

View sahara-ooga's full-sized avatar

Yuu Ogasawara sahara-ooga

View GitHub Profile
@sahara-ooga
sahara-ooga / CGSize+Inversed.swift
Created January 6, 2019 05:23 — forked from kazuhiro4949/MyViewController.swift
UICollectionViewController including type erased delegate
import UIKit
extension CGSize {
var inversed: CGSize {
return CGSize(width: self.height, height: self.width)
}
}