STTableSystemMsgCell.h 558 B

123456789101112131415161718
  1. //
  2. // STTableSystemMsgCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/24.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STTableBaseCell.h"
  10. @interface STTableSystemMsgCell : STTableBaseCell
  11. @property (weak, nonatomic) IBOutlet UILabel *timeLab;
  12. @property (weak, nonatomic) IBOutlet UIView *showView;
  13. @property (weak, nonatomic) IBOutlet UIImageView *headerImgView;
  14. @property (weak, nonatomic) IBOutlet UILabel *msgTitleLab;
  15. @property (weak, nonatomic) IBOutlet UILabel *msgContentLab;
  16. @end