2

Cordova を使用して iOS アプリを開発しており、このリンクから Cordova Barcode Scanner Plugin をダウンロードします。

ただし、ポートレートモードでのみ機能します。

CDVBarcodeScanner.mm にいくつかの変更を加えます。

#pragma mark CDVBarcodeScannerOrientationDelegate

- (BOOL)shouldAutorotate
{   
    return YES;// NO;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
    return UIInterfaceOrientationPortrait;
}

- (NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskAll; // UIInterfaceOrientationMaskPortrait;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    if ((self.orientationDelegate != nil) && [self.orientationDelegate respondsToSelector:@selector(shouldAutorotateToInterfaceOrientation:)]) {
        return [self.orientationDelegate shouldAutorotateToInterfaceOrientation:interfaceOrientation];
    }

    return YES;
}

- (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)orientation duration:(NSTimeInterval)duration
{
//    [CATransaction begin];
//    
//    self.processor.previewLayer.orientation = orientation;
//    [self.processor.previewLayer layoutSublayers];
//    self.processor.previewLayer.frame = self.view.bounds;
//    
//    [CATransaction commit];
//    [super willAnimateRotationToInterfaceOrientation:orientation duration:duration];

    [UIView setAnimationsEnabled:NO];
    AVCaptureVideoPreviewLayer* previewLayer = self.processor.previewLayer;
    previewLayer.frame = self.view.bounds;

    if (orientation == UIInterfaceOrientationLandscapeLeft) {
        [previewLayer setOrientation:AVCaptureVideoOrientationLandscapeLeft];
    } else if (orientation == UIInterfaceOrientationLandscapeRight) {
        [previewLayer setOrientation:AVCaptureVideoOrientationLandscapeRight];
    } else if (orientation == UIInterfaceOrientationPortrait) {
        [previewLayer setOrientation:AVCaptureVideoOrientationPortrait];
    } else if (orientation == UIInterfaceOrientationPortraitUpsideDown) {
        [previewLayer setOrientation:AVCaptureVideoOrientationPortraitUpsideDown];
    }

    previewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
    [UIView setAnimationsEnabled:YES];
}

横向きモードに回転できるようになりましたが、縦向きモードでしか機能しません。どうすれば修正できますか?


解決策に従って、zxing-all-in-one.cpp のif (result.empty() && Hints.getTryHarder() && image->isRotateSupported()) {}を削除します。

ただし、現在はランドスケープでのみ機能します。

4

2 に答える 2

1

zxing-all-in-one.cpp ファイルで、

変化する

if (result.empty() && hints.getTryHarder() && image->isRotateSupported()) {}

if (result.empty()) {}
于 2013-06-24T20:53:26.593 に答える
0

CDVBarcodeScanner.mm を変更することもできます。すべての ***Portraits を LandscapeLeft/LandscapeRight に置き換えるだけです -> 私は LandscapeLeft を好みます。

于 2014-03-26T15:24:28.523 に答える