isCompiled
アップルスクリプトオブジェクトがコンパイルされているかを返します
解説
アップルスクリプトオブジェクトがコンパイルされているかを返します。
返り値
( BOOL )
YES/NO
引数
フレームワーク
Foundation
クラス
NSAppleScript
Instance Methods
使用可能
10.2
参照
例文
#import "SetImage.h" @implementation SetImage - (IBAction)set:(id)sender { //開けるファイル拡張子の配列 NSArray *imgTypes = [ NSArray arrayWithObject : @"script" ]; //OpenPanelを作る NSOpenPanel *opPanel = [ NSOpenPanel openPanel ]; //アップルスクリプトオブジェクトを作る NSAppleScript *script; NSDictionary *error; //OpenPanelの結果のボタン番号 int opRet; //OpenPanelでファイル選択 opRet = [ opPanel runModalForDirectory : NSHomeDirectory() //どこのディレクトリを出すか file : @"Documents" //どのファイルを選択しておくか types : imgTypes ];//選べるファイルタイプ if ( opRet == NSOKButton ) { // OPENPanelのボタンがOKなら //NSImageを作ってファイルから読み込む script = [ [ NSAppleScript alloc ] initWithContentsOfURL: [NSURL fileURLWithPath:[opPanel filename]] error:&error ]; if ([script isCompiled]){ NSLog(@"isCompiled"); }else{ if ([script compileAndReturnError:&error]){ NSLog(@"Compiled"); }else{ NSLog(@"not Compiled"); } } } } @end