macOS/iOS API解説

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

目次

panel:willExpand:

ファイルブラウザを開いたり閉じたりしたときに呼ばれます
-(void)panel:(id)sender:
     willExpand:(BOOL)expanding:

解説

ファイルブラウザを開いたり閉じたりしたときに呼ばれます。
開いたときは(パネルが大きくなる)expandingにYESが入っています。
開いたときは(パネルが小さくなる)expandingにNOが入っています。

返り値

( void )

なし

引数

( id )sender

オブジェクト

( BOOL )expanding

展開するか

フレームワーク

ApplicationKit

クラス

NSSavePanel

Instance Methods

使用可能

10.0

参照

例文

#import "Controller.h"

@implementation Controller
- (IBAction)pushButton:(id)sender
{
NSSavePanel *spanel = [NSSavePanel savePanel];
//デリゲート設定
[spanel setDelegate:self];
//ファイルタイプ設定
[spanel setRequiredFileType:@"rtfd"];
//セーブパネル開く
[spanel beginSheetForDirectory:NSHomeDirectory()
    file:nil
    modalForWindow:myWindow
    modalDelegate:self
    didEndSelector:@selector(didEndSaveSheet:returnCode:conextInfo:)
    contextInfo:NULL];
}

//セーブパネルのデリゲート
-(void)panel:(id)sender willExpand:(BOOL)expanding
    {
    if (expanding){
        NSLog(@"YES");
    }else{
        NSLog(@"NO");
    }
}

//パネル終了
-(void)didEndSaveSheet:(NSSavePanel *)savePanel returnCode:(int)returnCode conextInfo:(void *)contextInfo
{
if (returnCode == NSOKButton){
        //NSLog([[savePanel URL] absoluteString]);
}else{
NSLog(@"Cansel");
}
}
@end