NoCotentCell.m 366 B

12345678910111213141516171819202122
  1. //
  2. // NoCotentCell.m
  3. // BuguLive
  4. //
  5. // Created by 杨仁伟 on 2017/9/26.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "NoCotentCell.h"
  9. @implementation NoCotentCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. for (UIView *subView in self.subviews) {
  13. [subView setLocalizedString];
  14. }
  15. // Initialization code
  16. }
  17. @end