Created a view, threw objects and decided to add a background image for the view. Posted by:
UIImageView *backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"background1.png"]]; [self.view addSubview:backgroundView];
As a result, the picture completely blocked all the controls. How do I send a drawing to the background?