I am using iMagRead
card reader library for iOS
. When I swipe the card then I got this type of data
How do I convert this data into real data
? I have tried this already but fail.
NSData *decodedData = [[NSData alloc] initWithBase64EncodedString:text options:0];
NSString *decodedString = [[NSString alloc] initWithData:decodedData encoding:NSUTF8StringEncoding];
NSLog(@"decoded string %@", decodedString); // NULL
You can do something like this,
Hope this will help :)