I have a QR/bar code reader app that uses the ZBar SDK. I want to implement a custom overlay and remove everything else so the camera view covers the entire screen. The overlay is not difficult to implement. When I remove the ZBar controls via reader.showsZBarControls = NO;
it removes the controls but leaves a black bar on the bottom of the screen, instead of filling the whole screen with the camera view, which is what I want.
I have tried using reader.wantsFullScreenLayout = YES;
and reader.showsCameraControls = NO;
without any luck. Has anyone done anything similar or have any suggestions?