12345678910111213141516171819202122232425 |
- //
- // FKTariffsShowView.h
- // FirstLink
- //
- // Created by 施昌鹏 on 16/7/13.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKTaxShowView : UIView
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *secondTitleLabel;
- @property (nonatomic, strong) UILabel *contentLabel;
- @property (nonatomic, strong) UILabel *moreLabel;
- @property (nonatomic, strong) UIView *moreView;
- @property (nonatomic, strong) UIControl *moreControl;
- @property (nonatomic, copy) void(^showDetailBlock)();
- -(void)showInView:(UIView *)layerView;
- @end
|