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.

101 lines
2.2 KiB

//
// TFEmptyView.h
// WXReader
//
// Created by 谢腾飞 on 2020/11/20.
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
//
#import "TFEmptyBaseView.h"
NS_ASSUME_NONNULL_BEGIN
@interface TFEmptyView : TFEmptyBaseView
/**
* 20.f
*/
@property (nonatomic ,assign) CGFloat subViewMargin;
/**
* (contentViewY )
*/
@property (nonatomic ,assign) CGFloat contentViewOffset;
/**
* Y坐标 (contentViewOffset )
*/
@property (nonatomic ,assign) CGFloat contentViewY;
#pragma Mark image
/**
* ()
*/
@property (nonatomic ,assign) CGSize imageSize;
#pragma Mark titleLab 相关
/**
* , 16.f
*/
@property (nonatomic ,strong) UIFont *titleLabFont;
/**
*
*/
@property (nonatomic ,strong) UIColor *titleLabTextColor;
#pragma Mark detailLab 相关
/**
* 14.f
*/
@property (nonatomic ,strong) UIFont *detailLabFont;
/**
* 2
*/
@property (nonatomic ,assign) NSInteger detailLabMaxLines;
/**
*
*/
@property (nonatomic ,strong) UIColor *detailLabTextColor;
#pragma Mark 按钮相关
/**
* , 14.f
*/
@property (nonatomic ,strong) UIFont *actionBtnFont;
/**
* , 40.f
*/
@property (nonatomic ,assign) CGFloat actionBtnHeight;
/**
* , 30.f
*/
@property (nonatomic ,assign) CGFloat actionBtnHorizontalMargin;
/**
* , 5.f
*/
@property (nonatomic ,assign) CGFloat actionBtnCornerRadius;
/**
* border的宽度, 0
*/
@property (nonatomic ,assign) CGFloat actionBtnBorderWidth;
/**
*
*/
@property (nonatomic ,strong) UIColor *actionBtnBorderColor;
/**
*
*/
@property (nonatomic ,strong) UIColor *actionBtnTitleColor;
/**
*
*/
@property (nonatomic ,strong) UIColor *actionBtnBackGroundColor;
@property (nonatomic ,strong) UIImageView *promptImageView;
@end
NS_ASSUME_NONNULL_END