I am curious about how the iPhone4 works out the size of frame items, for example:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
MyController *tempController = [[MyController alloc] init];
[[tempController view] setFrame:CGRectMake(0.0,20.0,320.0,460.0)];
[self setMyController:tempController];
[tempController release];
...
this fills the whole screen of both the iPhone3_sim, iPhone4_sim & iPhone4_device? I was sort of expecting to have to double the dimensions for iPhone4, is there some sort of auto app scaling (doubling) that comes into play, and if so how do you set/change that?
Cheers Gary