Apple says you must have @2x versions of your images and use a stuff like
UIImage* anImage = [UIImage imageNamed:@"Button"]; // without the extension
That will select the lowres and hires versions of Button image, depending on the iPhone version (3G/3GS or 4). But what if the app is for iPad too?
Will the iPad load the Button image even if I don't specify the extension?
thanks.