hi. i'm trying to draw an image onto my subclassed UIView by putting the following in the drawRect method:
UIImage *menuButton = [UIImage imageNamed
"menu button.png"];
[menuButton drawInRect:CGRectFromString(@"0,0,TIME LABEL WIDTH PORTRAIT,HEADING HEIGHT")];
however, i don't see any image.
UIImage *menuButton = [UIImage imageNamed
[menuButton drawInRect:CGRectFromString(@"0,0,TIME LABEL WIDTH PORTRAIT,HEADING HEIGHT")];
however, i don't see any image.