
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
17 lines
298 B
Objective-C
17 lines
298 B
Objective-C
//
|
|
// Base64.h
|
|
// YMhatFramework
|
|
//
|
|
// Created by chenran on 2017/5/4.
|
|
// Copyright © 2017年 chenran. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface Base64 : NSObject
|
|
|
|
+(NSString *)encode:(NSData *)data;
|
|
+(NSData *)decode:(NSString *)dataString;
|
|
|
|
@end
|