文字列からNSRectを生成して返します
NSRect NSRectFromString ( NSString * aString );
解説
文字列からNSRectを生成して返します
文字列は"{x=a;y=b;width=c;height=d}"
返り値
引数
( NSString * )aString
フレームワーク
Foundation
クラス
NSRectFromString
Function
使用可能
10.0
参照
NSStringFromRect
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { [image lockFocus]; [[NSColor blueColor] set]; NSRectFill(NSRectFromString(@"{x=0;y=0;width=90;height=90}")); [image unlockFocus]; } @end