Specifically, I'm trying to find the image path. This would be a super useful thing to be able to get, and as far as I've found nobody knows how. I've looked at the generated nib file for keys, and I'm able to see the image URL in there (test.jpg) but can't find the key to get it. The key "UIImage" returns the actual already constructed image (constructed via initWithCGImageStored:(CGImageRef)cgImage scale:(CGFloat)scale orientation:(UIImageOrientation)orientation
and a mysterious UIKit function call GetImageAtPath
which calls the mentioned init call), so that's not helpful.
I've also tried writing the UIImageView to disk with a NSKeyedArchiver and none of those values seem correct either, nor does the test.jpg value exist there.
If nobody can figure this out - anyone know how to read in a binary file as text? I could just read through the nib and parse out URLs, which is better than nothing, but NSString's constructors fail regardless of what format I try.