如何判断是iphone还是ipad

   NSString *s=[[UIDevice currentDevicemodel];  //可以根据这个字符串判断

        

        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)//也可以根据这个条件判断

        {

            //ipad 

            CCLOG(@"ipad>> %@",s);

        }

        else 

        {

            CCLOG(@"other>> %@",s);

            //other

        }

你可能感兴趣的:(UI,user,iPhone,ipad,interface)