IOS: verify if a point is inside a rect IOS: verify if a point is inside a rect ios ios

IOS: verify if a point is inside a rect


Swift 4

let view = ...let point = ...view.bounds.contains(point)

Objective-C

Use CGRectContainsPoint():

bool CGRectContainsPoint(CGRect rect, CGPoint point);

Parameters

  • rect The rectangle to examine.
  • point The point to examine.Return Valuetrue if the rectangle is not null or empty and the point is located within the rectangle; otherwise, false.

A point is considered inside the rectangle if its coordinates lie inside the rectangle or on the minimum X or minimum Y edge.


In Swift that would look like this:

let point = CGPointMake(20,20)let someFrame = CGRectMake(10,10,100,100)let isPointInFrame = CGRectContainsPoint(someFrame, point)

Swift 3 version:

let point = CGPointMake(20,20)let someFrame = CGRectMake(10,10,100,100)let isPointInFrame = someFrame.contains(point)

Link to documentation . Please remember to check containment if both are in the same coordinate system if not then conversions are required (some example)


In swift you can do it like this:

let isPointInFrame = frame.contains(point)

"frame" is a CGRect and "point" is a CGPoint