stringForKey:inTable:
テーブルで、キーと関連する文字列を返しますなければ空の文字列を返します
-(NSString *)stringForKey:(NSString *)key:
inTable:(NSString *)table:
解説
テーブルで、キーと関連する文字列を返します。なければ空の文字列を返します。
【table】プリンタ情報テーブル
● PPD プリンタ記述ファイル
● PPDOptionTranslation オプション
● PPDArgumentTranslation 引数
● PPDOrderDependency *OrderDependency値
● PPDUIConstraints *UIConstraint値
返り値
( NSString * )
文字列
引数
( NSString * )key
キー
( NSString * )table
テーブル
フレームワーク
ApplicationKit
クラス
NSPrinter
Instance Methods
使用可能
10.0
参照
- isKey:inTable:
- booleanForKey:inTable:
- floatForKey:inTable:
- intForKey:inTable:
- rectForKey:inTable:
- sizeForKey:inTable:
例文
#import "Controller.h" @implementation Controller - (IBAction)pushButton:(id)sender { //プリンタ NSPrinter *prn = [NSPrinter printerWithName:@"MICROLINE 3050c"]; //PPDにPCFileNameというキーがあったら処理する if ([prn isKey:@"PCFileName" inTable:@"PPD"]){ NSLog([prn stringForKey:@"PCFileName" inTable:@"PPD"]); }else{ NSLog(@"NO"); } } @end