| 123456789101112131415161718 |
- //
- // STTableSystemMsgCell.h
- // BuguLive
- //
- // Created by 岳克奎 on 17/4/24.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "STTableBaseCell.h"
- @interface STTableSystemMsgCell : STTableBaseCell
- @property (weak, nonatomic) IBOutlet UILabel *timeLab;
- @property (weak, nonatomic) IBOutlet UIView *showView;
- @property (weak, nonatomic) IBOutlet UIImageView *headerImgView;
- @property (weak, nonatomic) IBOutlet UILabel *msgTitleLab;
- @property (weak, nonatomic) IBOutlet UILabel *msgContentLab;
- @end
|