説明なし

FKProductRelativeView.h 481B

1234567891011121314151617181920
  1. //
  2. // FKProductRelativeView.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/5/24.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKProductRelativeItem.h"
  10. @interface FKProductRelativeView : UIView
  11. @property (nonatomic, strong) UIImageView *imageView;
  12. @property (nonatomic, strong) UILabel *titleLabel;
  13. @property (nonatomic, strong) UILabel *priceLabel;
  14. - (void)configWithRelativeItem:(FKProductRelativeItem *)item;
  15. @end