When you have a UIImageView which has been sent the following messages:
imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SteveJobsMacbookAir.JPG"]];
[imageView setFrame:CGRectMake(80.0, 20.0, 160.0, 230.0)];
[imageView setContentMode:UIViewContentModeScaleAspectFit];
[[self view] addSubview:imageView];
How can you then set this image as the phone's wallpaper?
You can't. There is no public API in iOS that allows you to modify the phone's wallpaper.
The best solution is to save your photo to the user's photo album, and prompt them to set it themselves from the device's Settings app.