IOS開發(91)之ZBar 條碼二維碼掃描控制項

來源:互聯網
上載者:User

在我們開發ios應用時,尤其是電子商務類應用,時常遇到條碼掃描的業務需求,幸運的已經有開源的SDK供我們使用──條碼的SDK for ios,下面介紹一下這個開源的SDK的使用方法:

 

   免費的條碼是zbar,是:http://zbar.sourceforge.net

   具體的實現過程如下:

第一步:下載zbar的sdk。

第二步:建立工程

第三步:把下載的ZBarSDK添加到工程中。

第四步:然後添加.framework到工程中。

 

第五,添加庫引用的標頭檔

第六,然後添加一個按鈕,控制掃描功能

 

代碼實現:

1)在.h檔案中加入協議ZBarReaderDelegate

2)在.m實現檔案中,實現如下代碼

//開啟掃描,調用iphone照相機

 

- (IBAction) scanButtonTapped

{

    ZBarReaderViewController *reader = [ZBarReaderViewController new];

    reader.readerDelegate = self;

    ZBarImageScanner *scanner = reader.scanner;

 

    [scanner setSymbology: ZBAR_I25

             config: ZBAR_CFG_ENABLE

             to: 0];

 

    [self presentModalViewController: reader    animated: YES];

    [reader release];

}

 

 

//代理方法

 

- (void) imagePickerController: (UIImagePickerController*) reader

 didFinishPickingMediaWithInfo: (NSDictionary*) info

{

 

    NSLog(@"info=%@",info);

    // 得到條碼結果

    id<NSFastEnumeration> results =

        [info objectForKey: ZBarReaderControllerResults];

    ZBarSymbol *symbol = nil;

    for(symbol in results)

        // EXAMPLE: just grab the first barcode

        break;

 

    // 將獲得到條碼顯示到我們的介面上

    resultText.text = symbol.data;

 

    // 掃描時的圖片顯示到我們的介面上

    resultImage.image =

        [info objectForKey: UIImagePickerControllerOriginalImage];

 

    // 掃描介面退出

    [reader dismissModalViewControllerAnimated: YES];

}

 

 

效果:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.