KWMShippingCell.h 554 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
//
//  KWMShippingCell.h
//  iCemarose
//
//  Created by HouWeiBin on 2016/11/4.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "Buy/Buy.h"


@interface KWMShippingCell : UITableViewCell

@property (nonatomic) BUYShippingRate *shippingRate;

-(void)setData:(BUYShippingRate *)shippingRate;

-(void)setShipSelected:(BOOL)selected;

@property (weak, nonatomic) IBOutlet UILabel *lbTitle;

@property (weak, nonatomic) IBOutlet UILabel *lbPrice;

@property (weak, nonatomic) IBOutlet UIImageView *ivSelect;


@end