O2CollectionView.swift 503 B

123456789101112131415161718192021222324
  1. //
  2. // O2CollectionView.swift
  3. // O2Platform
  4. //
  5. // Created by 刘振兴 on 16/6/17.
  6. // Copyright © 2016年 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class O2CollectionView: UICollectionView {
  10. override init(frame: CGRect, collectionViewLayout layout: UICollectionViewLayout) {
  11. super.init(frame: frame, collectionViewLayout: layout)
  12. }
  13. required init?(coder aDecoder: NSCoder) {
  14. fatalError("init(coder:) has not been implemented")
  15. }
  16. }