Created
August 3, 2015 16:09
-
-
Save MattFoley/c6a7df371274a31c6d36 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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