生成Code 39条形码

时间:2018-03-02 21:30:27

标签: ios swift barcode-printing code39

我有这个代码来生成条形码:

renderItems= () => {
   return this.state.items.map((vendors) => {
    return (
        <li key={vendors.id}>
        <h2>{vendors.name}</h2>
        <p>Vendor Name: {vendors.vendorName}
            {vendors.name === this.state.user.username || vendors.user === this.state.user.email ?
                <button onClick={() => this.remoteItem(vendors.id)}>Remove Item</button> : null}
            </p>
        </li>
    )
})
}

我需要生成一个code39条形码。我还没有找到&#34; CICode128BarcodeGenerator&#34;代码39。

如何为代码39修改此代码?

感谢

1 个答案:

答案 0 :(得分:1)

如果我正确地阅读Apple Documentation,则这些是他们编码的类型:

Aztec
CheckerBoard
Code128
ConstantColor
LenticularHalo
PDF417Barcode
Random
Starshine
Stripes
Sunbeams