暫無描述

FKProInfoCell.h 613B

12345678910111213141516171819202122232425
  1. //
  2. // FKProInfoCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/8/15.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FKProInfoCell : UITableViewCell
  10. @property (nonatomic, strong) UIButton *actionBtn;
  11. @property (nonatomic, strong) UIButton *linkBtn;
  12. @property (nonatomic, assign) BOOL showTranslate;
  13. @property (nonatomic, strong) NSString *orginStr;
  14. @property (nonatomic, strong) NSString *translateStr;
  15. + (CGFloat)heightForUpText:(NSString *)upText
  16. downText:(NSString *)downText
  17. showTranslate:(BOOL)showTranslate;
  18. @end