Описание тега cgrectmake
CGRectMake is used in iOS, it returns a rectangle with the specified coordinate and size values.
CGRectMake is used in iOS ( ios), it returns a rectangle with the specified coordinate and size values.
CGRect CGRectMake (
CGFloat x,
CGFloat y,
CGFloat width,
CGFloat height
);
- x: The x-coordinate of the rectangle’s origin point.
- y: The y-coordinate of the rectangle’s origin point.
- width: The width of the rectangle.
- height: The height of the rectangle.