I have a couple of arcs and rects in a UIView
, and a UIImageView
as well. I want to have the UIImageView
in the background. I have ordered it in IB so that the image view is behind my labels and buttons.
First, I need to put an image in the image view, which I don't want to do in IB. I've tried this code
UIImage *myImage = [UIImage imageNamed:@"image.png"];
UIImageView *myImageView = [[UIImageView alloc] initWithImage:@"myImage"];
But it doesn't work. After I get that working, what can I do to move my paths in front of the image view?