Farhan
Farhan
im using my code like so ``` UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init]; imagePicker.delegate = self; imagePicker.allowsEditing = YES; imagePicker.cropMode = DZNPhotoEditorViewControllerCropModeSquare; imagePicker.cropSize = CGSizeMake(self.view.frame.size.width, 400); [imagePicker.navigationBar setTintColor:[UIColor blackColor]]; imagePicker.sourceType...
Would be cool for when you enter or scan your card you can dismiss the VC and see the details in a nice textbox.
Hello watched your talk on authentication from a few years back, was pretty helpful in understanding auth. I was wondering, during the talk you didn't mention use of JWT but...