4

I am developing a watch independant app. I want to generate QRcode on watchkit, but since coreImage doesnt work with watchkit, is there any other way we can do this?

Thanks.

2 Answers2

2

I use libraries, which supported watch os.

For example EFQRCode

Eugene Lezov
  • 722
  • 7
  • 12
1

I've a QR Code appearing in a Watch App.

I generated it as a UIImage -- encoded it as a Base64 String and send it across to the Watch as Data using WatchConnectivity. This does use CIFiter but only the Phone side to generate a UIImage.

On the Watch I decoded the UIImage from the Data.

Sean Dev
  • 1,239
  • 1
  • 17
  • 31