変更可能な文字セットの文字を反対にします
解説
変更可能な文字セットの文字を反対にします。いままで含まれていた文字が含まれなくなり、含まれていなかった文字が含まれるようになります。
返り値
( void )
なし
引数
フレームワーク
Foundation
クラス
NSMutableCharacterSet
Instance Methods
使用可能
10.0
参照
- invertedSet (NSCharacterSet)
例文
#import "SetImage.h" @implementation SetImage - (IBAction)set:(id)sender { UTF32Char currentChar ; NSMutableCharacterSet *chrSet; int i; chrSet = [[NSMutableCharacterSet characterSetWithCharactersInString:@"1234567890"] retain]; [chrSet invert]; for ( i=30 ; i<=200 ; i++){ currentChar = (UTF32Char)i; if ([chrSet characterIsMember:currentChar]) { [tv insertText:[NSString stringWithFormat:@"%c",currentChar]]; } } } @end