KWMImage.m 631 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//
//  KWMImage.m
//  iCemarose
//
//  Created by HouWeiBin on 2016/11/13.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMImage.h"
#import "KWMStringUtil.h"
#import "KWMImageUtil.h"

@implementation KWMImage

-(NSString *)getSmallImage{
houweibin committed
16 17
    //return [KWMImageUtil getProductImageUrl2:self.value ImageSize:SmallImage];
    return @"";
houweibin committed
18 19 20
}

-(NSString *)getNormalImage{
houweibin committed
21 22
    //return [KWMImageUtil getProductImageUrl2:self.value ImageSize:NormalImage];
    return @"";
houweibin committed
23 24 25 26
}

//200*200
-(NSString *)getBigImage{
houweibin committed
27 28
    //return [KWMImageUtil getProductImageUrl2:self.value ImageSize:BigImage];
    return @"";
houweibin committed
29 30 31 32
}


@end