2
0

WFCUPinyinUtility.h 518 B

1234567891011121314151617181920212223
  1. //
  2. // WFCUPinyinUtility.h
  3. // WFChatUIKit
  4. //
  5. // Created by dali on 2021/1/28.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WFCUPinyinModel : NSObject
  11. @property (nonatomic, strong)NSMutableArray *jianpin;
  12. @property (nonatomic, strong)NSMutableArray *quanpin;
  13. @end
  14. @interface WFCUPinyinUtility : NSObject
  15. -(BOOL)isMatch:(NSString *)name ofPinYin:(NSString *)pinyin;
  16. - (BOOL)isChinese:(NSString *)text;
  17. @end
  18. NS_ASSUME_NONNULL_END