次のコードがあります。
//NSMutableArray sections - contains some data;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"[a-c]" options:0 error:NULL];
[sections enumerateObjectsUsingBlock:^(NSString * str, NSUInteger idx, BOOL * stop) {
NSTextCheckingResult *match = [regex firstMatchInString:str options:0 range:NSMakeRange(0, [str length])];
if (match) {
[filteredList addObject:match];
}
}];
この場合、セクションはNSMutableArray
.
NSMutableArray
セクションがof になる場合、コードをどのように変更すればよいNSMutableArrays
ですか?- 現在セクションが である場合、
NSMutableArray
どのようにセクションの を宣言できNSMutableArray
ますNSMutableArrays
か?