ZCMerchantDetailCell.h 902 Bytes
Newer Older
zhukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
//
//  ZCMerchantDetailCell.h
//  UniversalApp
//
//  Created by 凯朱 on 2019/6/3.
//  Copyright © 2019 徐阳. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "ZCMerchantModel.h"
NS_ASSUME_NONNULL_BEGIN
/**
 ZCMerchantDetailCell
 */
@protocol ZCMerchantDetailCellDelegate <NSObject>
/**
 查看证书
 */
-(void)zcMerchantDetailCellCheckCertificateAction:(NSString *)cerUrl;
@end

@interface ZCMerchantDetailCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *certificateLabel;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *remarkViewHeight;
@property (weak, nonatomic) IBOutlet UIView *remarkView;
@property (weak, nonatomic) IBOutlet UILabel *addressLbl;
@property(nonatomic, weak) id<ZCMerchantDetailCellDelegate> delegate;
-(void)paddingWithModel:(ZCMerchantModel *)model;
+(CGFloat)cellHeightWithModel:(ZCMerchantModel *)model;
@end

NS_ASSUME_NONNULL_END