21 lines
712 B
Objective-C
21 lines
712 B
Objective-C
//
|
|
// IfishMessageViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/7/26.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "PushmessageModel.h"
|
|
typedef void (^DeleteBtnClickBlock)(NSString *messageId ,BOOL isDelete);
|
|
@interface IfishMessageViewCell : UITableViewCell
|
|
@property (strong, nonatomic) UIImageView *pushTypeImg;
|
|
@property (strong, nonatomic) UILabel *pushTitle;
|
|
@property (strong, nonatomic) UILabel *pushContent;
|
|
@property (strong, nonatomic) UILabel *pushTimeLabel;
|
|
Strong UIButton *deleteBtn;
|
|
Copy DeleteBtnClickBlock deleteBlock;
|
|
-(void)loadInfoWithModel:(PushmessageModel *)model isShowDelete:(BOOL)isShowDelte isDeleteAll:(BOOL)idDeleteAll;
|
|
@end
|