How can I store a UIImage in an NSDictionary?
Yes you can:
NSMutableDictionary *dict = [NSMutableDictionary dictionaryWithCapacity:1]; UIImage *img = ...; [dict setObject:img forKey:@"aKeyForYourImage"]; UIImage *imgAgain = [dict objectForKey:@"aKeyForYourImage"];