Skip to content

Instantly share code, notes, and snippets.

@taboulot
Created October 6, 2022 11:27
Show Gist options
  • Save taboulot/2a56c43dd27479c31beb2066a1f803cd to your computer and use it in GitHub Desktop.
Save taboulot/2a56c43dd27479c31beb2066a1f803cd to your computer and use it in GitHub Desktop.
// In react-native-image-resizer/ios/ImageResizer.mm
// Replace
NSURL * fileURL = [[NSURL alloc] initWithString:uri];
// With this
NSURL *baseURL = [NSURL fileURLWithPath:@"file://"];
NSURL * fileURL = [[NSURL alloc] initWithString:uri relativeToURL:baseURL];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment