In my UIView's drawRect, there's a parameter rect, which is a CGRect, where would I change this rect?
I'd like to use it as a camera for a game that I am making,
such as
rect.origin.x = myCamera.x;
rect.origin.y = myCamera.y;
and then my drawing functions should draw it where the camera is placed...
How would I change the rect?