Now I generate QR Code with simple text and for that I use below demo project.
IOS_QR_Code_Generator
And for generating QR code:
NSString *code = @"JAY RAPARKA SIMPLE Encoding string";
Barcode *barcode = [[Barcode alloc] init];
self.view.backgroundColor = [UIColor whiteColor];
[barcode setupQRCode:code];
ivQRCode.image = barcode.qRBarcode;
Right now I just encode "JAY RAPARKA SIMPLE Encoding string" this simple text but I want to generate QR code for more complex data like (Contect information, link/URL, account balance on the base of id,etc..). So please any one done this earlier than please help me.
Thank you!
For decoding I use ZBar sdk and it also works properly and encoding also work but I just want to generate QR for more data.