STDynamicCommonCell.m 593 B

1234567891011121314151617181920212223242526
  1. //
  2. // STDynamicCommonCell.m
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/24.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "STDynamicCommonCell.h"
  9. @implementation STDynamicCommonCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. self.headerImgView.layer.cornerRadius = self.headerImgView.frame.size.width/2.0f;
  14. self.headerImgView.layer.masksToBounds = YES;
  15. }
  16. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  17. [super setSelected:selected animated:animated];
  18. // Configure the view for the selected state
  19. }
  20. @end