1234567891011121314151617181920 |
- //
- // FKProductRelativeView.h
- // FirstLink
- //
- // Created by jack on 16/5/24.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKProductRelativeItem.h"
- @interface FKProductRelativeView : UIView
- @property (nonatomic, strong) UIImageView *imageView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *priceLabel;
- - (void)configWithRelativeItem:(FKProductRelativeItem *)item;
- @end
|