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'
end
import ZXingObjC
let write = ZXMultiFormatWriter.init()
do {
let result = try write.encode("123456", format: kBarcodeFormatCode128, width: 300, height: 300)
guard let image = ZXImage.init(matrix: result) else {
return
}
barCodeView.image = UIImage.init(cgImage: image.cgimage)
} catch {
print("errors..")
}
IOS 앱 배포 방식에 대한 설명 (0) | 2018.03.06 |
---|---|
Swift-[IphoneX 체크] (0) | 2018.02.07 |
Swift-[Network 상태 확인] (0) | 2018.02.07 |
Swift-[런처스크린 불러오기] (0) | 2018.01.16 |
IOS 서버 없이 앱 업데이트 알림 팝업 띄우기 (0) | 2017.09.19 |