mirror of
https://github.com/HackPlan/quark-shell-mac.git
synced 2026-06-17 08:29:41 +08:00
28 lines
486 B
Objective-C
28 lines
486 B
Objective-C
//
|
|
// NSArray+isIncludeString.m
|
|
// Pomotodo
|
|
//
|
|
// Created by c4605 on 2017/1/16.
|
|
// Copyright © 2017年 HackPlan. All rights reserved.
|
|
//
|
|
|
|
#import "NSArray+isIncludeString.h"
|
|
|
|
@implementation NSArray (isIncludeString)
|
|
|
|
- (BOOL)isIncludeString:(NSString *)str
|
|
{
|
|
for (NSString *elem in self) {
|
|
if (
|
|
[elem isKindOfClass:[NSString class]] &&
|
|
[elem isEqualToString:str]
|
|
) {
|
|
return YES;
|
|
}
|
|
}
|
|
|
|
return NO;
|
|
}
|
|
|
|
@end
|