What is the best practice to universal app?
Make iPad version and them scale to iPhone ? is a good idea?
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
viewSize.height *= 2;
viewSize.width *= 2;
}
Thanks for help!