123456789101112131415161718192021222324252627 |
- //
- // NSString+MT.h
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSString (MT)
- /**
- * URLEncode
- */
- - (NSString *)URLEncodedString;
- /**
- * URLDecode
- */
- -(NSString *)URLDecodedString;
- -(CGFloat)computeStringHeight;
- @end
- NS_ASSUME_NONNULL_END
|