EFQRCode
                                
                                
                                
                                    EFQRCode copied to clipboard
                            
                            
                            
                        A better way to operate QR Code in Swift, support iOS, macOS, watchOS and tvOS.

### Check List Thanks for considering to open an issue. Before you submit your issue, please confirm these boxes are checked. - [x] I have read the [README.md](https://github.com/EFPrefix/EFQRCode/blob/master/README.md), but there...
### Check List Thanks for considering to open an issue. Before you submit your issue, please confirm these boxes are checked. - [x] I have read the [README.md](https://github.com/EFPrefix/EFQRCode/blob/master/README.md), but there...

### Check List Thanks for considering to open an issue. Before you submit your issue, please confirm these boxes are checked. - [X] I have read the [README.md](https://github.com/EFPrefix/EFQRCode/blob/master/README.md), but there...
```swift // 使用 if let image = EFQRCode.generate(content: "280580947644881355") { let qrImage = UIImage(cgImage: image) imageView.image = qrImage } ``` 第一次 用时 1.9432099166660919 第二次用时 0.02680799999507144 请问有什么解决方法么?
你好,最近在做识别二维码的功能,看到EFQRCode识别这块的逻辑有2个疑问. 为什么 CIDetectorAccuracyLow 低精度的识别要放到高精度的后面呢,我理解低精度的速度较快,高精度应该做兜底. 另外一个疑问是 取得图片的灰度这块是必须的吗 ``` private func getQRString() -> [String] { let result = image.ciImage().recognizeQRCode( options: [CIDetectorAccuracy: CIDetectorAccuracyHigh] ) if result.isEmpty, let grayscaleImage = image.grayscale { return grayscaleImage.ciImage().recognizeQRCode(...
