You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.2 KiB
62 lines
1.2 KiB
1 year ago
|
//
|
||
|
// DelectMessageTableViewCell.h
|
||
|
// watch
|
||
|
//
|
||
|
// Created by WeiChaoZheng on 2018/1/27.
|
||
|
// Copyright © 2018年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
typedef void(^AgreeOrNOBlock)(BOOL ifAgree);
|
||
|
|
||
|
@interface MessageTableViewCell : UITableViewCell
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UIImageView *selectImageView;
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *selectImageWidth;
|
||
|
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *aTitleLabel;
|
||
|
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *timeLabel;
|
||
|
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *messageLabel;
|
||
|
|
||
|
|
||
|
/**
|
||
|
同意按钮
|
||
|
*/
|
||
|
@property (strong, nonatomic) IBOutlet UIButton *agreeBtn;
|
||
|
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *agreeBtnHeightNSCL;
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
拒绝按钮
|
||
|
*/
|
||
|
@property (strong, nonatomic) IBOutlet UIButton *reFusalBtn;
|
||
|
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *reFusalBtnHeightNSCL;
|
||
|
|
||
|
/**
|
||
|
是否已读按钮
|
||
|
*/
|
||
|
@property (weak, nonatomic) IBOutlet UILabel *readLabel;
|
||
|
|
||
|
|
||
|
/**
|
||
|
是否是 删除状态 重写 set 方法
|
||
|
*/
|
||
|
@property (assign, nonatomic) BOOL isDelect;
|
||
|
|
||
|
/**
|
||
|
是否是申请记录消息
|
||
|
*/
|
||
|
@property (assign, nonatomic) BOOL isApplicationRrecord;
|
||
|
|
||
|
|
||
|
@property (copy, nonatomic) AgreeOrNOBlock agreeOrNOBlock;
|
||
|
|
||
|
@end
|