20 lines
302 B
Objective-C
20 lines
302 B
Objective-C
//
|
|
// NSSet+OSS.h
|
|
// AliyunOSSSDK
|
|
//
|
|
// Created by ws on 2023/12/28.
|
|
// Copyright © 2023 aliyun. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSSet (OSS)
|
|
|
|
- (NSString *)componentsJoinedByString:(NSString *)separator;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|