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

//
// 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