123456789101112131415161718192021222324252627 |
- import UIKit
- public protocol ActionSheetCollectionItemContentCell where Self: UICollectionViewCell {
-
- static var nib: UINib { get }
- static var defaultSize: CGSize { get }
- static var leftInset: CGFloat { get }
- static var rightInset: CGFloat { get }
- static var topInset: CGFloat { get }
- static var bottomInset: CGFloat { get }
- static var itemSpacing: CGFloat { get }
- }
|