Index>Foundation>NSCharacterSet>
アルファベットの文字セットを返します
解説
アルファベットと数字の文字セットを返します。
返り値
( NSCharacterSet * )
文字セット
引数
フレームワーク
Foundation
クラス
NSCharacterSet
Class Methods
使用可能
10.0
参照
+ letterCharacterSet
+ decimalDigitCharacterSet
例文
#import "SetImage.h" @implementation SetImage - (IBAction)set:(id)sender { UTF32Char currentChar ; NSCharacterSet *chrSet; int i; chrSet = [NSCharacterSet alphanumericCharacterSet] ; for ( i=1 ; i<=200 ; i++){ currentChar = (UTF32Char)i; if ([chrSet characterIsMember:currentChar]) { [tv insertText:[NSString stringWithFormat:@"%c",currentChar]]; } } } @end