swift

presenting/presented VC と dismiss

モーダル遷移なら present/dismiss ・プッシュ遷移なら push/pop を使うけど、 present の関係と、 dismiss を呼んだ時の動きについてちょっとメモ ドキュメントに書いてある通りだけど.... https://developer.apple.com/documentation/uikit/uiviewcontroll…

Protocol Extension で UICollectionView をちょっと便利に

UICollectionView を使う際、以下のようにセルを再利用していました // CustomCell.swift class CustomCell: UICollectionViewCell { static func nib() -> UINib { return UINib(nibName: String(describing: self), bundle: nil) } static func reuseIdent…