BogoOpenWardCollectionCell.m 395 B

1234567891011121314151617181920212223
  1. //
  2. // BogoOpenWardCollectionCell.m
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/10/8.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BogoOpenWardCollectionCell.h"
  9. @implementation BogoOpenWardCollectionCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. self.btn.layer.cornerRadius = 4;
  14. self.btn.layer.masksToBounds = YES;
  15. }
  16. @end