1234567891011121314151617181920212223 |
- //
- // NSString+NTES.h
- // NIMDemo
- //
- // Created by chris on 15/2/12.
- // Copyright (c) 2015年 Netease. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface NSString (NTES)
- - (CGSize)stringSizeWithFont:(UIFont *)font;
- - (NSString *)MD5String;
- - (NSUInteger)getBytesLength;
- - (NSString *)stringByDeletingPictureResolution;
- - (NSString *)tokenByPassword;
- @end
|