I have an Universal Application and my question is, if it is possible to load two different html files in my UIWebview depending on the iDevice.

Thanks for any answers.

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

you can use this...

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)//if device is ipad
{

}
else   //if device is iPhone
{


}
link|improve this answer
Awesome, this works for me! – theCodingError Jun 9 '11 at 16:08
feedback

You can use UIDevice class.

UIDevice *device = [UIDevice currentDevice];    

if ([device.model isEqualToString:@"iPad"])
{

}
else
{
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.