Snip20160217_5.png
核心代碼:
在didFinishLaunchingWithOptions中根據不同的設備來初始化不同的主界面
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
{
// iPhone設備
} else
{
// iPad 設備
}
核心代碼:
在didFinishLaunchingWithOptions中根據不同的設備來初始化不同的主界面
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
{
// iPhone設備
} else
{
// iPad 設備
}