[Swift] 바코드 생성하기
목적 : ZXing 라이브러리 사용하여 바코드 생성하기1. 라이브러리 추가 - 저는 cocoapod 를 사용해서 작업을 진행 하였습니다. - 참고 (https://github.com/TheLevelUp/ZXingObjC) target 'zxing67' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! # Pods for zxing67 pod 'ZXingObjC', '~> 3.2.1' end2. 핵심 코드 - IOS는.. 별도의 코드가 필요가 없네요.. 띠로링... import ZXingObjC3. 사용법 let write = ZXMultiFormatWriter..