YMBaseCollectionViewCell.m 444 B

1234567891011121314151617181920212223242526
  1. //
  2. // YMBaseCollectionViewCell.m
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/4.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMBaseCollectionViewCell.h"
  9. @implementation YMBaseCollectionViewCell
  10. - (instancetype)initWithFrame:(CGRect)frame{
  11. if (self = [super initWithFrame:frame]) {
  12. [self ym_setupViews];
  13. }
  14. return self;
  15. }
  16. - (void)ym_setupViews {
  17. }
  18. - (void)ym_bindViewModel:(id)viewModel{
  19. }
  20. @end