iOSスキャン二次元コードを実現し、ジェスチャー短縮レンズです。


スイープコードを作るには、ズームインが必要です。
アップルはAVCapture Connectionにおいて、video ScaleAndCropFactor:スケーリング・アンド・クリッピング係数を提供しています。この属性を使って、引き寄せるレンズを実現できます。ジェスチャーUAPPinchGesture Recognizerを組み合わせると、簡単にジェスチャーを実現して遠くのレンズを引くことができます。
ジェスチャーコード

///         
@property(nonatomic,assign)CGFloat beginGestureScale;

///       
@property(nonatomic,assign)CGFloat effectiveScale;

- (void)cameraInitOver
{
 if (self.isVideoZoom) {
  UIPinchGestureRecognizer *pinch = [[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(pinchDetected:)];
  pinch.delegate = self;
  [self.view addGestureRecognizer:pinch];
 }
}

- (void)pinchDetected:(UIPinchGestureRecognizer*)recogniser
{
 self.effectiveScale = self.beginGestureScale * recogniser.scale;
 if (self.effectiveScale < 1.0){
  self.effectiveScale = 1.0;
 }
 [self.scanObj setVideoScale:self.effectiveScale];

}

- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
{
 if ( [gestureRecognizer isKindOfClass:[UIPinchGestureRecognizer class]] ) {
  _beginGestureScale = _effectiveScale;
 }
 return YES;
}
近拉遠レンズコード

- (void)setVideoScale:(CGFloat)scale
{
 [_input.device lockForConfiguration:nil];

 AVCaptureConnection *videoConnection = [self connectionWithMediaType:AVMediaTypeVideo fromConnections:[[self stillImageOutput] connections]];
 CGFloat maxScaleAndCropFactor = ([[self.stillImageOutput connectionWithMediaType:AVMediaTypeVideo] videoMaxScaleAndCropFactor])/16;

 if (scale > maxScaleAndCropFactor)
  scale = maxScaleAndCropFactor;

 CGFloat zoom = scale / videoConnection.videoScaleAndCropFactor;

 videoConnection.videoScaleAndCropFactor = scale;

 [_input.device unlockForConfiguration];

 CGAffineTransform transform = _videoPreView.transform;
 [CATransaction begin];
 [CATransaction setAnimationDuration:.025];

  _videoPreView.transform = CGAffineTransformScale(transform, zoom, zoom);

 [CATransaction commit];

}
ちょっと注意したいのですが、the video ScraleAndCropFactor property may be set a value in the range of 1.0 to videoMaxScraleAndCropFactor、videoScareAndCropFactorという属性の取捨範囲は1.0-videoMadScralAndCropFactorです。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。