2012-03-03

iPhoneとiPadではiAdのサイズが違う

iPhoneとiPadでは、iAdのサイズが違います。
iPhoneでは、縦向きのとき320 x 50 points、横向きで480 x 32 pointsです。
一方、iPadでは、縦向きで768 x 66 points、横向きで1024 x 66 pointsになります。

これに合わせて、処理を変更する必要がある場合があります。AdStirを利用している場合は、サイズが320 x 50に固定なのでiPad用に広告を表示するのは控えた方が良さそうです。

iPhone(iPod touch)であるか、iPadであるかは、次のようにして判定できます。



if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
    // iPhone or iPod touch
}
else {
    // iPad
}

0 件のコメント: