12345678910111213141516171819 |
- //
- // FKProTitleCell.h
- // FirstLink
- //
- // Created by jack on 16/8/12.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKProTitleCell : UITableViewCell
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UIButton *priceWarnActBtn;
- + (CGFloat)cellHeightForTitle:(NSString *)title;
- @end
|