12345678910111213141516171819202122232425262728293031323334 |
- //
- // ASCurrencyManager.h
- // Asteria
- //
- // Created by iOS on 2023/12/9.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASCurrencyManager : NSObject
- /// 当前选中的货币
- @property (nonatomic, copy, readonly) NSString *currentCur;
- @property (nonatomic, strong) NSArray<NSString *> *avaiCurencys;
- @property (nonatomic, strong) NSArray *exchange_rates;//汇率列表
- - (void)setSelectCurrency:(NSString *)sel;
- + (instancetype)shared;
- - (void)getAllCurrencyData;
- //获取当前汇率 (保留两位小数的字符串)
- - (NSString *)getCurrentCurrencyRate;
- @end
- NS_ASSUME_NONNULL_END
|