NIMPinyinConverter.h 297 B

1234567891011121314151617
  1. //
  2. // NIMPinyinConverter.h
  3. // NIM
  4. //
  5. // Created by amao on 10/15/13.
  6. // Copyright (c) 2013 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface NIMPinyinConverter : NSObject
  10. + (NIMPinyinConverter *)sharedInstance;
  11. - (NSString *)toPinyin: (NSString *)source;
  12. @end