Skip to content

Instantly share code, notes, and snippets.

@MattFoley
Created August 3, 2015 16:09
Show Gist options
  • Save MattFoley/c6a7df371274a31c6d36 to your computer and use it in GitHub Desktop.
Save MattFoley/c6a7df371274a31c6d36 to your computer and use it in GitHub Desktop.
//RN attempts this @ ln686 of RCTConvert.m, imageWithContentsOfFile fails to load the image.
(lldb) po [UIImage imageWithContentsOfFile:@"file:///Users/tfallon/Library/Developer/CoreSimulator/Devices/E2A18017-6069-45C6-BFB2-814E62A3F6DA/data/Containers/Data/Application/3A2FBAD8-BCC9-417E-8644-FAD4551A681C/tmp/genImageFile.png"]
nil
//Image is loaded when I attempt this at a breakpoint on the same line.
(lldb) po [UIImage imageWithContentsOfFile:@"Users/tfallon/Library/Developer/CoreSimulator/Devices/E2A18017-6069-45C6-BFB2-814E62A3F6DA/data/Containers/Data/Application/3A2FBAD8-BCC9-417E-8644-FAD4551A681C/tmp/genImageFile.png"]
<UIImage: 0x7f9f9a41cef0>, {90, 90}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment