NSString+NIMKit.h 377 B

1234567891011121314151617181920212223
  1. //
  2. // NSString+NIM.h
  3. // NIMKit
  4. //
  5. // Created by chris.
  6. // Copyright (c) 2015年 NetEase. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NSString (NIMKit)
  10. - (CGSize)nim_stringSizeWithFont:(UIFont *)font;
  11. - (NSString *)nim_MD5String;
  12. - (NSUInteger)nim_getBytesLength;
  13. - (NSString *)nim_stringByDeletingPictureResolution;
  14. - (UIColor *)nim_hexToColor;
  15. @end