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