NSImage:canInitWithPasteboard:
Home 目次>ApplicationKit>NSImage

canInitWithPasteboard:

ペーストボードからイメージオブジェクトを作成することが出来るかを返します


+(BOOL) canInitWithPasteboard:(NSPasteboard *)pasteboard


【返り値】
   BOOLYES/NO
【パラメータ】
   pasteboardペーストボード


【解説】

ペーストボードからイメージオブジェクトを作成することが出来るかを返します。



【例文】


#import "SetImage.h"

@implementation SetImage

- (IBAction)set:(id)sender
{

if ([NSImage canInitWithPasteboard:[NSPasteboard generalPasteboard]]){
NSLog(@"YES");
}
else{
NSLog(@"NO");
}

}

@end


(C) 2000-2007 Satoshi Oomori.
[Apple]

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

この記事を評価してください。 

良い 

間違いがある 説明がわかりにくい 例文がわかりにくい  

Home 目次>ApplicationKit>NSImage
修正日2006.12.26