KWMCurrencyUtil.h 579 Bytes
Newer Older
lee committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//
//  KWNCurrencyUtil.h
//  iCemarose
//
//  Created by lee on 2017/6/15.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface KWMCurrencyUtil : NSObject

+ (instancetype) sharedInstance;

- (NSString *)priceFormatted:(NSDecimalNumber *) price;
- (NSString *)priceFormattedByCurrencyCode:(NSDecimalNumber *) pric;
- (NSString *)fixFormatted:(NSString *) price;
- (NSDecimalNumber *) calcPriceByCurrencyCode:(NSDecimalNumber *) price;
lee committed
19
- (NSString *)priceFormatted:(NSDecimalNumber *)price currencyCode:(NSString *) code;
lee committed
20 21

@end