I'm working in the simulator right now and when trying to access the attributes of an image returned by UIImagePickerController's didFinishPickingImage, I get an EXC_BAD_ACCESS error:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)img editingInfo:(NSDictionary *)editInfo {
NSLog(@"Image size: %@", img.size);
}
What am I doing wrong?