12345678910111213141516171819202122232425 |
- //
- // UICollectionViewCell+Extension.h
- // onePiece
- //
- // Created by admin on 2019/6/26.
- // Copyright © 2019 TPLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UICollectionViewCell (Extension)
- - (void)setUpSubViews;
- - (void)configCellWithModel:(id)model indexPath:(NSIndexPath *)indexpath;
- - (void)setSubViewsConstraints;
- @end
- NS_ASSUME_NONNULL_END
|