1234567891011121314151617181920212223242526 |
- //
- // YMBaseCollectionViewCell.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/4.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMBaseCollectionViewCell.h"
- @implementation YMBaseCollectionViewCell
- - (instancetype)initWithFrame:(CGRect)frame{
- if (self = [super initWithFrame:frame]) {
- [self ym_setupViews];
- }
- return self;
- }
- - (void)ym_setupViews {
-
- }
- - (void)ym_bindViewModel:(id)viewModel{
-
- }
- @end
|