mirror of
https://github.com/HackPlan/quark-shell-mac.git
synced 2026-06-17 08:29:41 +08:00
16 lines
264 B
Objective-C
16 lines
264 B
Objective-C
//
|
|
// NSArray+isIncludeString.h
|
|
// Pomotodo
|
|
//
|
|
// Created by c4605 on 2017/1/16.
|
|
// Copyright © 2017年 HackPlan. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSArray (isIncludeString)
|
|
|
|
- (BOOL)isIncludeString:(NSString *)str;
|
|
|
|
@end
|