You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
416 B
26 lines
416 B
//
|
|
// NSString+DTFBase64.h
|
|
// DTFUtility
|
|
//
|
|
// Created by 汪澌哲 on 2023/1/3.
|
|
// Copyright © 2023 com.DTF.iphoneclient.zoloz. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSString (DTFBase64)
|
|
/**
|
|
* 转换为Base64编码
|
|
*/
|
|
- (NSString *)base64EncodedString;
|
|
|
|
/**
|
|
* 将Base64解码
|
|
*/
|
|
- (NSString *)base64DecodedString;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|