I want to add a background image to part of my app, but when I just add
Code:
[myImage drawInRect:myRect];
the app lags quite a bit due to the fact that it is redrawing the entire image every time drawrect: gets called (which is about twice a second).
Since the background image itself is not changing at all, I thought that there might be a way to draw the image once and leave it there.
Does anyone know how I would do this?
Thanks in advance!