20 lines
316 B
Objective-C
20 lines
316 B
Objective-C
//
|
|
// LunarFormatter.h
|
|
// FSCalendar
|
|
//
|
|
// Created by Wenchao Ding on 25/07/2017.
|
|
// Copyright © 2017 wenchaoios. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LunarFormatter : NSObject
|
|
|
|
- (NSString *)stringFromDate:(NSDate *)date;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|