That is best accomplished with a transparent PNG. Just import it to your project and then create a new UIImageView that you give to the reader.
I did this to add a logo:
// Create the reader
self.reader = [ZBarReaderViewController new];
self.reader.readerDelegate = self;
// Create image for adding a logo :)
UIImage *image = [UIImage imageNamed:@"scan_logo.png"];
UIImageView *imageLogo = [[UIImageView alloc] initWithImage:image];
imageLogo.frame = CGRectMake(0, 0, image.size.width, image.size.height);
// Configure reader
self.reader.cameraOverlayView = imageLogo;
To get the image in the center just change the frame positioning from:
imageLogo.frame = CGRectMake(0, 0, image.size.width, image.size.height);
To something like:
imageLogo.center = CGRectMake(320/2, 460/2, image.size.width, image.size.height);