新しいios 7のqrリーダーがあります。
画面上のコードの場所 (コーナー) を検出する必要があります。
AVMetadataObject を使用します。
それを検出する方法はありますか?
- (void)captureOutput:(AVCaptureOutput *)captureOutput
didOutputMetadataObjects:(NSArray *)metadataObjects
fromConnection:(AVCaptureConnection *)connection
{
for (AVMetadataObject *metadata in metadataObjects)
{
AnimationView *cv = [[AnimationView alloc]initWithFrame:self.livevideo.bounds];
[cv setBackgroundColor:[UIColor clearColor]];
cv.rectXY = metadata.bounds;
[location addSubview:cv];
if ([metadata.type isEqualToString:AVMetadataObjectTypeQRCode])
{
NSString *code =[(AVMetadataMachineReadableCodeObject *)metadata stringValue];
NSLog(@"Read QRCODE %@", code);
}
}
}