Accessing Image Properties Without Loading the Image Into Memory Sometimes you might want to retrieve certain properties from an image file, such as the image’s dimensions or other metadata, without actually displaying the full-size image on screen. The simplest way to do that on iOS is using the UIImage class: The problem with this approach is that the entire image gets loaded into memory. And si