macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

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