17 lines
246 B
Objective-C
17 lines
246 B
Objective-C
//
|
|
// NSString+Customer.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by zhl on 2022/11/28.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSString (Customer)
|
|
+ (BOOL)isStringEmpty:(NSString *)string;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|