INDEX>Foundation>function
解説
指定した範囲(NSRect)が指定した位置(NSRect)が含まれるかを返します。
座標系が反転していると仮定して(Y軸が下に増加)NSMouseInRectと同じテストを実行します。
返り値
引数
( NSPoint )aPoint
( NSRect )aRect
フレームワーク
Foundation
クラス
NSPointInRect
Function
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSPoint aPoint = NSMakePoint(100,100); NSRect bRect = NSMakeRect(0,0,100,100); if (NSPointInRect(aPoint,bRect)){ NSLog(@"YES"); }else{ NSLog(@"NO"); } } @end