BGNoContentView.h 368 B

1234567891011121314151617181920
  1. //
  2. // BGNoContentView.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/8/29.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseView.h"
  9. @interface BGNoContentView : BGBaseView
  10. /**
  11. 无内容提示,开放出来灵活改动
  12. */
  13. @property (weak, nonatomic) IBOutlet UILabel *noContentTipLabel;
  14. + (instancetype)noContentWithFrame:(CGRect)frame;
  15. @end