16 lines
298 B
Objective-C
16 lines
298 B
Objective-C
//
|
|
// NTESPinyinConverter.h
|
|
// NIM
|
|
//
|
|
// Created by amao on 10/15/13.
|
|
// Copyright (c) 2013 Netease. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NTESPinyinConverter : NSObject
|
|
+ (NTESPinyinConverter *)sharedInstance;
|
|
|
|
- (NSString *)toPinyin: (NSString *)source;
|
|
@end
|