酷店

UICollectionViewCell+Extension.h 402B

12345678910111213141516171819202122232425
  1. //
  2. // UICollectionViewCell+Extension.h
  3. // onePiece
  4. //
  5. // Created by admin on 2019/6/26.
  6. // Copyright © 2019 TPLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UICollectionViewCell (Extension)
  11. - (void)setUpSubViews;
  12. - (void)configCellWithModel:(id)model indexPath:(NSIndexPath *)indexpath;
  13. - (void)setSubViewsConstraints;
  14. @end
  15. NS_ASSUME_NONNULL_END