1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // ChatMsgNoticeCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/4.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatMsgNoticeCell : UITableViewCell
- @property (weak,nonatomic) IBOutlet UIView *cell0SearchBgView;
- @property (weak,nonatomic) IBOutlet UIButton *cell0SearchBtn;
-
- @property (weak,nonatomic) IBOutlet UIImageView *cell1IconImgView;
- @property (weak,nonatomic) IBOutlet UILabel *cell1TitleLabel;
- @property (weak,nonatomic) IBOutlet UILabel *cell1TimeLabel;
- @property (weak, nonatomic) IBOutlet UIButton *cell1SelectButton;
- @property (weak, nonatomic) IBOutlet UIImageView *rightImageView;
- @property (weak, nonatomic) IBOutlet UIView *cellBlackVIew;
- @property (weak, nonatomic) IBOutlet UIImageView *IsTopImgV;
- @property (weak, nonatomic) IBOutlet UIButton *enterBtn;
- @property (weak, nonatomic) IBOutlet UILabel *powerLbl;
- @property (weak,nonatomic) IBOutlet UIImageView *cell2UserImgView;
- @property (weak,nonatomic) IBOutlet UILabel *cell2TitleLabel;
- @property (weak,nonatomic) IBOutlet UILabel *cell2IntroLabel;
- @property (weak,nonatomic) IBOutlet UILabel *cell2TimeLabel;
- @property (weak,nonatomic) IBOutlet UIView *cell2RedBgView;
- @property (weak,nonatomic) IBOutlet UIButton *cell2EditBtn;
- @property (weak, nonatomic) IBOutlet UILabel *cell2UnReadNumberLbl;
- @property (weak, nonatomic) IBOutlet UILabel *yanRedNumL;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *topConstant;
- @property (assign,nonatomic) BOOL isShow;
- + (CGFloat)configCell0Height;
- + (CGFloat)configCell1Height;
- + (CGFloat)configCell2Height;
- + (ChatMsgNoticeCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgNoticeCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgNoticeCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgNoticeCell *)configCell10:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgNoticeCell *)configCell20:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgNoticeCell *)configCell30:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgNoticeCell *)configCell40:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgNoticeCell *)configCell50:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgNoticeCell *)configCell60:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|