暂无描述

FKTaxShowView.h 639B

12345678910111213141516171819202122232425
  1. //
  2. // FKTariffsShowView.h
  3. // FirstLink
  4. //
  5. // Created by 施昌鹏 on 16/7/13.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FKTaxShowView : UIView
  10. @property (nonatomic, strong) UILabel *titleLabel;
  11. @property (nonatomic, strong) UILabel *secondTitleLabel;
  12. @property (nonatomic, strong) UILabel *contentLabel;
  13. @property (nonatomic, strong) UILabel *moreLabel;
  14. @property (nonatomic, strong) UIView *moreView;
  15. @property (nonatomic, strong) UIControl *moreControl;
  16. @property (nonatomic, copy) void(^showDetailBlock)();
  17. -(void)showInView:(UIView *)layerView;
  18. @end