macOS/iOS API解説

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

目次

printPanel

プリントパネルを返します

解説

プリントパネルを返します。

返り値

( NSPrintPanel * )

印刷パネル

引数

フレームワーク

ApplicationKit

クラス

NSPrintPanel

Class Methods

使用可能

10.0

参照

例文

#import "Controller.h"

@implementation Controller
- (IBAction)pushButton:(id)sender
{
NSPrintPanel *pPanel = [NSPrintPanel printPanel];

[pPanel beginSheetWithPrintInfo:[NSPrintInfo sharedPrintInfo]
                    modalForWindow:myWindow
                    delegate:self
                    didEndSelector:@selector(didEndPrintSheet:returnCode:conextInfo:)
                    contextInfo:nil
                    ];

}
-(void)didEndPrintSheet:(NSSavePanel *)savePanel returnCode:(int)returnCode conextInfo:(void *)contextInfo
{
if (returnCode == NSOKButton){
NSLog(@"YES");
}else{
NSLog(@"Cansel");
}
}
@end