KWMMidDetailView.m 1.3 KB
//
//  KWMMidDetailView.m
//  iCemarose
//
//  Created by HouWeiBin on 2017/7/13.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import "KWMMidDetailView.h"
#import "KWMStringUtil.h"

@interface KWMMidDetailView()
    @property(nonatomic,weak) IBOutlet UILabel *lbDetail;
@end

@implementation KWMMidDetailView


- (id)init{
    if (self=[super init]){
        [self addView];
    }
    return self;
}

- (id)initWithCoder:(NSCoder *)aDecoder {
    self = [super initWithCoder:aDecoder];
    if (self) {
        [self addView];
    }
    return self;
}

-(instancetype)initWithFrame:(CGRect)frame{
    if (self =[super initWithFrame:frame]) {
        [self addView];
    }
    return self;
}

-(void)awakeFromNib{
    [super awakeFromNib];
}

-(void)addView{
    [[NSBundle mainBundle] loadNibNamed:NSStringFromClass([self class])
                                  owner:self
                                options:nil];
    
    self.vView.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
    [self addSubview:self.vView];
}

-(void)setProduct:(BUYProduct *)product{
    _product = product;
    if(product && ![KWMStringUtil isEmpty:product.stringDescription]){
        self.lbDetail.text = product.stringDescription;
    }else{
        self.lbDetail.text = @"暂无商品描述";
    }
}


@end