I converted iPhone xib to ipad xib. I referred this link Converting iPhone xib to iPad xib?. But after deploy to ipadm, the view size is too small. It displaying center of the screen. It won't display 768x1024 screensize.
code:
NSString *aboutFilePath = [[NSBundle mainBundle] pathForResource:@"index"
ofType:@"html"];
NSLog(@"%@",aboutFilePath);
NSString* htmlString = [NSString stringWithContentsOfFile:aboutFilePath
encoding:NSUTF8StringEncoding
error:nil];
NSString *aPath = [[NSBundle mainBundle] bundlePath];
NSURL *anURL = [NSURL fileURLWithPath:aPath];
[webView loadHTMLString:htmlString baseURL:anURL];