Search code examples
objective-ccocoabarcode

Is there a barcode recognition framework for Cocoa (OS X)?


Is there a framework or other sample code for doing barcode recognition (create and scan) on cocoa [OS X]?


Solution

  • You have to use a third-party framework for that.

    For example, you can use:

    • ZXing. Note that the 1D code is not stabilized, so you probably will have to dig into the code.
    • ZBar. Seems to be a very capable library.

    A simple Google search or StackOverflow search can help you too.